I am having a string like: $m-set 88829828277 very good he is
. From this string I want to get the part after the second space. ie, I want to get: very good he is
.
I tried using split(" ")[2]
but it only gives one word: very
.
Any help is greatly appreciated!
Thanks!