I have a little problem here, I'm looking for a better way to split Strings. For example, I get a line that looks like this.
0000JHASDF+4429901234ALEXANDER
I know the pattern with which the string is built, and I have an array of numbers like this.
4,5,4,7,9
0000 - JHASDF - +442 - 9901234 - ALEXANDER
It's easy to split all of this into a String MID command, but it seems to be slow when I get a file containing 8000 - 10000 datasets. So, any suggestion, how can I do this faster to get the data in a list or in an array of strings? If someone knows how to do this, for example, with RegEx.
source
share