Hi folks,
I'm facing the following challenge:
There's a file containing a string looking like that:
203;202;204;205;207;206;208
The length of this string is changing from time to time.
Now what I'd like to do is to separate this string like this:
203
202
204
205
207
206
208
And perform certain actions on each of those numbers ...
Any idea what would be an elegant way to accomplish this ?
Regards
Thomas
I'm facing the following challenge:
There's a file containing a string looking like that:
203;202;204;205;207;206;208
The length of this string is changing from time to time.
Now what I'd like to do is to separate this string like this:
203
202
204
205
207
206
208
And perform certain actions on each of those numbers ...
Any idea what would be an elegant way to accomplish this ?
Regards
Thomas