I need to match a word like 'César' for a regex like this /^cesar/i
.
Is there an option like /i
to configure the regex so it ignores the acute accents?.
Or the only solution is to use a regex like this /^césar/i
.
i) makes the regex case insensitive. (? s) for "single line mode" makes the dot match all characters, including line breaks.
Regular expression, or simply RegEx JavaScript allows you to write specific search patterns. You can also make the search case-sensitive or insensitive, search for a single JavaScript RegEx match or multiple, look for characters at the beginning or the end of a word.
The standard ecmascript regex isn't ready for unicode (see http://blog.stevenlevithan.com/archives/javascript-regex-and-unicode).
So you have to use an external regex library. I used this one (with the unicode plugin) in the past : http://xregexp.com/
In your case, you may have to escape the char é
as \u00E9
and defining a range englobing e, é, ê, etc.
EDIT : I just saw the comment of Alex : you'll find inside the range for the accented equivalent of e.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With