Hello, Dcrew here!
I wondered how I can split a string, so I can retrieve for example from this integer:
<font color=red>495</font><font color=green>825</font><font color=orange>542</font>
To get 1-3 # from the Int: <font color=red>495</font>
To get 4-6 # from the Int: <font color=green>825</font>
To get 7-9 # from the Int: <font color=orange>542</font>
I want to achieve this so I can display this integer in a string like so:
<font color=blue>$ 495,825,542</font>
So it looks more readable, unless you have an alternative answer :)