How would I go about splitting a String in several places where ever a certain character occurs.
For example, here is the String
"10067829311288"
When looping through the String, if the digit is a "1", it will take the next the next two characters and split, if not, it will take only one. Here's how it should be split.
100 67 82 93 112 88
Any help is appreciated.
112instead of1128?