I am currently porting my web app codes from PHP to JS.
I am having an issue with this regex. from PHP
/\(\d*\)|\/\(P\)\//
used like this
preg_replace('/\(\d*\)|\/\(P\)\//', '', $string);
how can I convert this to work on JS ?
str.replace();
Thank you in advance
Nothing really special. PHP regex syntax is very much the same as in JavaScript:
str = str.replace(/\(\d*\)|\/\(P\)\//g, "");
You can find more information about regular expressions in JavaScript in this manual from MDN: https://developer.mozilla.org/en-US/docs/JavaScript/Guide/Regular_Expressions.
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