UNPKG

phpjs

Version:

php.js offers community built php functions in javascript

9 lines (8 loc) 289 B
function quotemeta(str) { // discuss at: http://phpjs.org/functions/quotemeta/ // original by: Paulo Freitas // example 1: quotemeta(". + * ? ^ ( $ )"); // returns 1: '\\. \\+ \\* \\? \\^ \\( \\$ \\)' return (str + '') .replace(/([\.\\\+\*\?\[\^\]\$\(\)])/g, '\\$1'); }