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
https://forums.phpfreaks.com/topic/263265-regexp-prob/
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
https://forums.phpfreaks.com/topic/263265-regexp-prob/#findComment-1349709
Share on other sites

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.