I am currently porting my web app codes from PHP to JS.
I am having an issue with this regex. from PHP
/\\(\\d*\\)|\\/\\(P\\)\\//
u
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.