src.app.shared.tools.regexp-utils.ts Maven / Gradle / Ivy
export function escapeRegExp(str) {
return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, '\\$&');
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy
export function escapeRegExp(str) {
return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, '\\$&');
}