Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Anyone,
I just wanted to ask if how could I remove all the characters before the second occurrence of space in a string using tMap?
For example:
Input: "This is a sentence"
Ouput: "a sentence"
Thanks!
row1.sentence.replaceAll("^.* ", "").replaceAll("^.* ", "")