I have a field looking like this
xxxx feeee ddd fff
ddd fff eee kkkkk ss
ddd sss xx
I would like to find the last space and then split the last
So I want to see
fff
ss
xx
I do know that I can split all, but the size of the fields differs.
Any suggestions on:
Find last space and then split it after last space.
We’ve added the optional third argument to functions keepafter() and keepbefore(). The argument allows specifying the number of delimiters after/before which to keep text. The number can be negative. In this case, it counts from the end. So it’s no longer necessary to use the mirror() function.