Hello everyone
I have a string variable (from a text file) which I need to split by specific pattern ..
The pattern would be space followed by numeric values then the symbol ) like that
 12)
So how can I split by this pattern
Example:
input = 1) any data 2) some other data 3)other data 4)and so on ...
Output would be
1) any data
2) some other data
3)other data
4)and so on ...

Thanks advanced for help