I have an interesting situation.I need to get the data from between the 8th and 9th instance of the ";" character.For instance, I have a data set that looks like this:Record 1: 0;0;0;0;22.68;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0Record 2: 74.52;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0Record 3: 0;0;0;0;23.04;0;0;0;99.84;0;0;0;0;0;0;0;0;0;0;0Record 4: 1.08;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0Record 5: 1.476;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0Record 6: 1.116;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0I would need to grab 99.84 from record 3 and 0 from the rest.How should I go about doing this?
↧