How do I search for a string that contains only chars from a set including x, and require it to contain x? e.g. [a-z]+ but not matching if it doesn't contain x.
So it should match quux but not foo or bar.
|
How do I search for a string that contains only chars from a set including So it should match |
||||
|
Assuming you want to match a string of only x,y or z, match start (
If you are trying to match
|
||||
|
|
|
try something like this
|
|||||||||
|
|
|
|||||
|
x, y and/or zand then go on to saya-zand thatquuxshould match. – Billy Moon Aug 6 '12 at 15:52yyzwon't match, butabxwill match – John Corbett Aug 6 '12 at 15:59