This content has been marked as final.
Show 2 replies
-
1. Re: Regex to match a string after colon ":"
Mahfooj Khan Dec 25, 2016 9:03 PM (in response to Aleks Roth)1 of 1 people found this helpfulHi Aleks,
You can try this
Option 1: REGEXP_EXTRACT([String],'[a-z]+\:+(\D+)')
Option 2: MID([String],FIND([String],':',1)+1,LEN([String]))
Let me know If this help.
Mahfooj
-
2. Re: Regex to match a string after colon ":"
Jay Morehart Feb 1, 2017 9:39 AM (in response to Aleks Roth)RegExr: Learn, Build, & Test RegEx is a good resource to test regular expressions