Hello everyone!
I'm trying my best to find the correct formula to find the last word in a sentence, using regular expressions in MRT but without success.
Can anyone help me in this direction?
I was unable to find any threads on this topic.
Thank you!
MRT find last word in a sentence
Moderators: Hacker, petermad, Stefan2, white
Re: MRT find last word in a sentence
Something like this:
$1 holds your last word.
Code: Select all
(\w+)\W*$
☐ [E] ✅ RegEx
Re: MRT find last word in a sentence
Yes, it works! Thank you!