I am trying to find the space before the last word of a string.
For example, for
Bob Jane
I would like to find a space right in front of Jane. I try to find and replace everything in order to become a comma. So the end result will be
Bob ,Jane
I only do this in a text editor (using Sublime), so I do not use a programming language. Thanks!
source share