Hi there,
I'm trying to extract everything after "Business Name" using this expression: (?<=Business Name).+
So for example, if my original sentence is:
This is a Business Name for a new business.
I want to see:
for a new business.
Unfortunately, when I put this expression into the Regex tool, it is saying "No Marked Groups Found" when I try to Parse. Is this a problem with the expression?
Solved! Go to Solution.
Hi @elamp6
I'm not the most versed person in Regex, but I think this will do it for you:
Business Name(.+)
OR
Business Name\s(.+) if you don't want the leading space in front of your "extracted string"
Remember to use the Parse Method on the Regex Tool.
Hope this helps
This will match everything after, but not include, Business Name:
(?<=Business Name).*
https://regexr.com/ is a great site for learning and testing regex expressions.
@Aguisande That'll do it! Much simpler and perfectly effective. Thank you!