I need to split a string into 3 different parts. Below are some examples of the data:
1004. .
1004. 7.276
70003. . 5
71345.7.276
71345. .2
I would like the data to be split at the decimal point. For example:
1004.7.276 would be
1004.
7.
276
70003. . 5 would be
70003.
.
5
Also, if anyone would know of a way to "roll up" so the string that all started with 1004 would be listed once instead of all listed. That would be great.
Thanks!
1004. .
1004. 7.276
70003. . 5
71345.7.276
71345. .2
I would like the data to be split at the decimal point. For example:
1004.7.276 would be
1004.
7.
276
70003. . 5 would be
70003.
.
5
Also, if anyone would know of a way to "roll up" so the string that all started with 1004 would be listed once instead of all listed. That would be great.
Thanks!