02-21-2012 01:03 PM
I'm trying to scan one long string and the length may vary. I'm trying to display each character. for example.
Example.
,,,,,,,,,,,,,,,,,*1E if they are 2 commas back to back then stop the scan.
04,05,08,10,11,,*1E In this case i would like to first scan the string from left to right and display the numbers before the comma as long as there isn't 2 commas back to back
04,05,08,,,,,,,,,*E In this case I would like to scan the string from left to right and display the numbers before the comma 04 and 05 and 08 and stop there are 2 commas back to back.
02-21-2012 01:20 PM