Jump to content

Repetitive Characters.


takn25

Recommended Posts

Hi, I am getting slightly better with REGEX. Searched everywhere for a good tutorial on repetitive characters but no luck. Could some one guide me how can i achieve the desired result. The thing I am after is to check a string, for repetitive characters for instance a name I don't want a user to input as "WWWWWWWWilliam" what I want to create is to check that any alphabet is not used repetitively more than 3 times e.g WWW or AAA and not AAAA.  Any help would be greatly appreciated thanks.

Link to comment
Share on other sites

$subject = "WWWWWWWWilliam"; // example

if (preg_match('~[a-z]{4,}~i',$subject)) {
  // has more than 3 letters in a row
}

 

Though I can't help but question why you feel the need to police something like this... you should only be enforcing stuff from a security or practical PoV, not a "this is my personal opinion" point of view.

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.