Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 */ ?

share|improve this question
1  
please format your code properly next time – Madara Uchiha Aug 27 '11 at 17:41

2 Answers

The following should work:

/\/\*|\*\//g
share|improve this answer
2  
+1 beat me to it :) – AlienWebguy Aug 27 '11 at 17:40
1  
Thanks, this didn't work straight away but i pasted it above everything else and then it did. – Steve Aug 27 '11 at 17:46

Replace /* or replace */

var string = "/**"
string.replace(/(\/\*)|(\*\/)/g,"replaced")
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.