Jump to content

Recommended Posts

What would be an 'eregi()' pattern for a string that is:

 

- alphanumeric

- 4-12 characters

 

I'm a little confused??  My book is only for PHP version 4.  Most online resources are useless.

 

Would this be it?

 

eregi([a-z]+[A-Z]+[0-9]+{4,12},$string)

Link to comment
https://forums.phpfreaks.com/topic/82637-solved-eregi-pattern/
Share on other sites

sorry the four was supposed to be a $.

Yes it's not case sensitive as it's using 'eregi', not 'ereg'

if (!eregi("^[a-z0-9]{4,12}$", $string)
{
echo 'You have entered an invalid character, or your sting is not 4-12 characters long.';
}

 

if you want only lower case use this:

if (!ereg("^[a-z0-9]{4,12}$", $string)
{
echo 'You have entered an invalid character, or your sting is not 4-12 characters long.';
}

or for only caps switch the a-z, with A-Z

Link to comment
https://forums.phpfreaks.com/topic/82637-solved-eregi-pattern/#findComment-423680
Share on other sites

For those who are following this thread ...

 

If you can't get this to work:

 

if (!ereg("^[a-zA-Z0-9]{4,12}$", $string)
{
echo 'You have entered an invalid character, or your sting is not 4-12 characters long.';
}

 

This should fix it:

 

if (!ereg("^([a-zA-Z0-9]){4,12}$", $string)
{
echo 'You have entered an invalid character, or your sting is not 4-12 characters long.';
}

 

That's just something that I found.  I had the first snippet work on one page, but not on another.  I did not take the time to figure out why, because this second snippet was the fix and I'm short on time.

Link to comment
https://forums.phpfreaks.com/topic/82637-solved-eregi-pattern/#findComment-423739
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.