Jump to content

Regexp prob


billygoatkaraoke

Recommended Posts

Gidday

 

I have the following regexp set up to return true if the string doesn't pass:

 

if(filter_var(myWords, FILTER_VALIDATE_REGEXP, array("options"=>array("regexp"=>"/^[' &\p{L}\p{Nd}]*$/"))) === false) return true;

 

What I want to pass is any letter or number in any language, plus single quotes, ampersands and spaces.

 

The above seems to work, but not for non-english letters eg with accents.

 

Is there anything obvious I'm missing?

 

Thanks for your time and help.

 

Link to comment
Share on other sites

Depending on the system you run on, the \w parameter may work. Not sure why you want to use such an overcomplicated line of code. This seems to work for me based on your requirements

function validString($string)
{
    return !preg_match("#[^\w\d'& ]#", $string);
}

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.