I have a small worry with RegExp in JavaScript. I would like to make an RegExp that is insensitive to accents.
For example if I do:
var str = 'césar';
var i = New Regexp (str, 'desired parameter, similar to <i> for example').exec('cesar');
console.log(i) // césar or cesar should print
Does something like this exist?