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?