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 a regex expression which allows,

  1. Alphabets in capital as well as small letters
  2. Numeric Digits
  3. ! _ -

For Example I want to match this !nativeeditor_status and SESSID.

Thanks in advance

share|improve this question
For a regex tutorial see e.g. this on regular-expressions.info or for a short regex overview this on xisb. – stema Nov 16 '12 at 7:13
Did you try searching before asking your question? This is pretty much Regex For Beginners stuff, and GIYF. – GordonM Nov 16 '12 at 9:10
Stack overflow is not for getting code – scrblnrd3 Mar 21 at 19:39

closed as too localized by Michael Petrotta, Dagon, Quentin, stema, Smi Nov 16 '12 at 7:11

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

3 Answers

Try this:

if (preg_match('/[\w!-]+/', $subject)) {
    # Successful match
}
share|improve this answer

Here is a basic regex which will match what you need:

[a-zA-Z0-9_!-]+
share|improve this answer
I agree \d and \w can be used if your the regex in your lang supports it. 0-9a-zA-Z is more explicit and tends to be more compatible, hence my choice of not using \d and \w. Advantage/Disadvantage of \w however is that it is case insensitive. – Aimon Bustardo Nov 23 '12 at 7:17
preg_match('/[a-z\d!_-]+/i', $string);
share|improve this answer
Thank you very much it works – user1828822 Nov 16 '12 at 7:18
a-z\d_ together can all be replaced by the simpler \w – Brad Werth Nov 17 '12 at 22:48
1  
That is true. I had intentionally did it this way so OP could see what characters were being allowed and to allow easy modification in case he/she wanted to remove/add chars. Right now OP wants for example to match !nativeeditor_status possibly later may want to match !somethingelse not knowing what chars \w matches would make it more difficult to modify considering OP is not well versed with regex. For efficiency purposes I would definitely go with \w though. – cryptic ツ Nov 18 '12 at 0:49

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