Jump to content

hours and hours for something so simple


devknob

Recommended Posts

after countless searches im down to this

 

preg_match("[abcdefghijklmnopqrstuvwxyz0123456789_-]", $variable

 

I dont care about anything, other than the only characters allowed are the ones listed above

a-z, 0-9, - or _

 

no spaces, no @.

 

Can someone please post a response and explain what im doing wrong here

Link to comment
Share on other sites

You can use ranges....  but you need to use anchors if you want the preg_match to fail if other characters are present.

 

Also you're not using delimiters (technically you are, but.... not what you mean).

 

preg_match('/^[\w\d-]+$/',$var);

 

\w = A-Za-z_

\d = 0-9

- = -

^ = beginning of string

$ = end of string

+ = one or more (it'll fail on an empty string)

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.