I have a text file that my main.brs reads in. The file has a good number of lines, and each data line looks like this:
12.24, -63.0, 1234, -0.55;
Each value separated by a comma, end of line delineated by a semicolon.
How do I extract the individual values from the string? In C, I would use strchr() to find the location of the commas, is there an equivalent in Brightscript? If not, how can this be done?
Thanks