I would like to replace a string. I have tried this, which I thought would work, but it doesn't
string = "/*"
string.replace(/\/(?=\*)/g,"replaced")
I tried escaping the asterisk and leaving it alone but both didn't work.
Could somebody tell me the regex to replace /* and */ ?