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

Is there a way to match a set of words in a sentence?

The requirement is I would like to check whether a sentence contains the following words po or p.o or p.o or box. But it shouldn't catch post or sandbox.

po --> error

post --> success

box --> error

hippo --> succes

Thanks in advance

share|improve this question
Should it catch post in postal? – KooiInc Apr 27 '11 at 12:53

2 Answers

Use \b to catch word boundaries.

The regex fragment:

\b(po|p\.o)\b

will only match if a sentence contains the word po or the word p.o.

share|improve this answer

Like sh54's response, but without the | block.

\b(p\.?o\.?)\b

This will math po, p.o., box, and any combination that includes box.

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.