SOLVED
RegEx of 2 words
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
selsset97
7 - Meteor
‎11-30-2022
07:58 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi Community,
I am trying to parse a column with many words in the following way:
Separate the first 2 words from the rest of of the content
<Input>
<Desired output>
Any advice on how to do do it?
Thank you!
Solved! Go to Solution.
Labels:
2 REPLIES 2
apathetichell
19 - Altair
‎11-30-2022
08:04 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
This would be easier with:
formula tool - new field - first two words:
GetWord([field],1)+" "+GetWord(field,2)
formula tool - new field - "remainder"
replace([field1],[first two words]+" ","")
flying008
15 - Aurora
‎11-30-2022
10:01 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi, @selsset97
If your string include more repeat words, maybe you can use the below formula:
1- First 2 words:
REGEX_Replace([Plants], "^([[:alpha:]]+\s[[:alpha:]]+).+$", "$1")
2- Other last words:
Trim(REGEX_Replace([Plants], "^" + [First], ""))
