Hi,
I am having values like
xyz abc 123
jkl uio opop 345
wer opl A0123
Now, I want to display the values
123
345
A0123
in another column.
Can anyone help me in doing this.
I tried using String manipulation with “lastIndexOf” and it is getting the number. But I need to last string
I also tried to cut the string from Right using space but unable to find it out.
Hi, This expression works perfectly. At the same time, I also want to have text values in another column i.e.,
xyz abc
jkl uio opop
wer opl
could you also help me where can I find these regex expressions to write?
Dear @ngumpena,
To have both parts in separated columns, use Regex Split and input this pattern: (.*(?= .*$))(?: )(.*)
Armin
EDITED: The previous pattern (.* )(.*)
had a problem: The first group had a space at the end. Now the space which separates the first part and the second part (the last space) will not be caught.