Removing a word from list of words
Find more posts tagged with
Sort by:
1 - 1 of
11
Sort by:
1 - 1 of
11
@Anusha, use regex.
The idea is that you want to keep everything till the last comma followed by a word.
use the replace operator with above snippet, and replace with $1
You can play with the regex here :
https://regex101.com/r/URTvjo/1
The idea is that you want to keep everything till the last comma followed by a word.
^(.*),\w+.*Not fully tested but it should do the trick.
use the replace operator with above snippet, and replace with $1
You can play with the regex here :
https://regex101.com/r/URTvjo/1
The idea is that you want to keep everything till the last comma followed by a word.
Not fully tested but it should do the trick.
use the replace operator with above snippet, and replace with $1
You can play with the regex here :
https://regex101.com/r/URTvjo/1