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
https://forums.phpfreaks.com/topic/227993-repetitive-characters/
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.

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.