Jump to content

regex validation


johnrb87

Recommended Posts

Just add them into the character class with the rest of the stuff. Only real trick is the hyphen, since it is also used to specify ranges.  You can put it anywhere in the list if you escape it first (preceding it with a \) but you can also put it as the first or last item.

 

Also, since you want to only allow those chars for the whole string, you need to include start and ending string anchor tags.  Otherwise, it will match or not match based on substrings withing the string.

 

var regex = /^[-a-zA-Z0-9_ ]+$/; 

Link to comment
https://forums.phpfreaks.com/topic/241480-regex-validation/#findComment-1240545
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.