Jump to content

Recommended Posts

so i am not a huge fan of these snippets, but i need some help creating one.

string requirements:
-minimum length of 3.
-maximum length of 28.
-can only contain letters (both capital and none) and numbers.
-string can contain - (normal dash), they can not be at the very beginning/end of the string.
--> also, the dash can not be concurrent, string can not be 'asd--asd', but only 'asd-asd' or 'as-d-as-d'

this is what i have, i only have an issue with the dash.

function isValidDisplayName($displayName){
    return preg_match('/[a-zA-Z0-9-]{3,28}/',$displayName);
}
Link to comment
https://forums.phpfreaks.com/topic/304468-starting-out-with-expressions/
Share on other sites

Checking the string length is the job of strlen(), so forget about that when you write the regex.

 

There are three logical steps here:

  • Write a pattern for an alphanumerical sequence without a dash. That's the prefix.
  • Write a second pattern for an alphanumerical sequence preceded by a dash.
  • Put the two together and repeat the second with the * quantifier.

And learn what anchors are. Right now, you're merely doing a substring search.

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.