Cutting string on dots
RanieriOct 19 2009 — edited Oct 21 2009Hello,
I have a string like "14.10.5.1.5" and I need to cut it on dots to have a return like
sequence | string
1 | 14
2 | 10
3 | 5
4 | 1
5 | 5
The number of dots can vary, so the string can be "14.10" or "14" or "14.2.5" and so on...
How could I solve it?
I appreciate any help
Thanks