In the below string,
'This "is, "just, for", Test", ignore it. My name is "FirstName, LastName".'
I want to replace all Commas(,) only inside the double quotes("") with ###.
For now I only found the matching pattern for (""), but need to build the regex to replace the commas.
/".*?"/g
Could you please help me? Thanks in advance ;)
Expected o/p: This "is### "just### for"### Test", ignore it. My name is "FirstName### LastName".
Note: This is not dupe of "Find comma in quotes with regex and replace with HTML equiv". Please see my expected o/p(Even I wanna replace the Comma in inner double quotes).