I need to match all occurrences of // in a string in a Javascript regex
It can't match /// or /
So far I have (.*[^\/])\/{2}([^\/].*)
which is basically "something that isn't /, followed by // followed by something that isn't /"
The approach seems to work apart from when the string I want to match starts with //
This doesn't work:
//example
This does
stuff // example
How do I solve this problem?
Edit: A bit more context - I am trying to replace // with !, so I am then using:
result = result.replace(myRegex, "$1 ! $2");
//or also the text around it? – Felix Kling Jan 5 '11 at 21:07String.replace, not regexes. Matching a (or two) chars qualifies as a simple string operation. – nikc.org Jan 5 '11 at 21:23String.replace. How would you specify to replace only//but not e.g.///without regex? – Felix Kling Jan 5 '11 at 21:25///(and friends) should be ignored. – nikc.org Jan 5 '11 at 21:28