Hi, one little problem
In column expression node, i would like to extract all text from the right side of string until first blank space!
Can someone help mi with that! Is it “right” or “substr” or some combination
Thanks
Hi, one little problem
In column expression node, i would like to extract all text from the right side of string until first blank space!
Can someone help mi with that! Is it “right” or “substr” or some combination
Thanks
Hello @rsamec
You can test with the following code; you will get the remaining characters beyond the last occurrence of a space character:
regexReplace(stripEnd(column("text")), ".*\\s+(.*)", "$1")
BR
Hello @rsamec,
If you are looking to get right side characters from last occurrence of a space character then there are multiple ways
You will get output as follows
Regards, Yogesh
I used this code and it works thank you
hey @rsamec, it is same as i did above.
If you can mark it as solution so that if anyone searches it in future, it will be visible.
Thanks and have a good day.
Yes yes i know…I used your solution i will mark now
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.