Hi
I have a
string like this:
I want to split first on ; and then on :
Finally the output should be only the latter part around : i.e. my output should be def, ghi, jkl, pqr, stu, yza,aaa,bbb
This can be done using Split twice i.e. once with ; and then with : and then
pattern match to find just the right part next to the :. Howvever, is there a better and optimized solution to achieve this?