'How to convert PHP regex to JavaScript regex
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
Solution 1:[1]
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.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | VisioN |
