I've got the following Problem:
I want to take parts of a string into an array. So far no problem (splitstring),
but, I can't use splitstring because it takes my operators out.
Explained on an example:
Following string: "47-62*5141"
I need it like this: {"47", "-", "62", "*", "5141"}
If you could give me a code example, I would be very pleased!