This is the right method....
if(strtolower($pass) == '/\d{3}/')
{
form_error($form, t('Passwords cannot contain sequences of 3 or more of the same character.'));
}
Plz some one help me...
|
This is the right method....
Plz some one help me... | |||||||
feedback
|
| |||||||||||
feedback
|
|
In order to use regular expressions, you will need to call preg_match or a similar function. The regular expression you are looking for is:
That means "any character" followed by the same character followed by the same character. "\d" is to match a single digit character. The "same character" part is due to the use of a backreference - ie, the exact same match that was achieved by the first captured (ie, in brackets) pattern in the regular expression. Here is some code with tests to allow you to play around:
| |||
|
feedback
|