/**
* Build a regular expressión from string
*/
function buildRegexp(str, flags){
return new RegExp(str
.replace(/[aáäàâ]/ig, '[aáäàâ]')
.replace(/[eéëèê]/ig, '[eéëèê]')
.replace(/[iíïìî]/ig, '[iíïìî]')
.replace(/[oóöòô]/ig, '[oóöòô]')
.replace(/[uúüùû]/ig, '[uúüùû]')
.replace(/\s+/g, '.+'), flags || 'i');
};
Esta función construye una expresión regular a partir de una cadena que será adecuada para buscar coincidencias en cadenas sin importar los acentos que puedan tener los caracteres
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.