0

Trying to replace all a's in the string ignoring the case.

str = "All a's will be replaced";
str.replace(/a/gi, 'Aa');

As expected, the above line of code produces Aall Aa's will be replAaced

But,

regExp = new RegExp('/a/gi');
str.replace(regExp, 'Aa');

the above line with the use of RegExp pattern produces original string All a's will be replaced

How to achieve expected result?

cuSK
  • 806
  • 11
  • 23

0 Answers0