I want to get the word that's after the word 'from'
from+\s+(\w+)
only if that word is 'the' then i would like to also get the word after that.
Is this possible with a regex, or does that need to be coded with equals()?
equals()
from\s+(the\s+)?(\w+)
Is probably what you're looking for.
Try this:
from\s+(the\s+\w+|\w+)
Yes it is possible : from\s+(?:the\s+)?(\w+)
from\s+(?:the\s+)?(\w+)
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
1 year ago
viewed
183 times
active