Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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()?

share|improve this question

3 Answers

from\s+(the\s+)?(\w+)

Is probably what you're looking for.

share|improve this answer

Try this:

from\s+(the\s+\w+|\w+)
share|improve this answer

Yes it is possible : from\s+(?:the\s+)?(\w+)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.