Here I go:
I'm coding a PHP application, and I've got a new official domain for it, where all the FAQ are now located. Some of the files in my script include help links to the old FAQ domain, so I want to replace them using the new domain. However, I want to keep the URLs linking to the old domain only if they are located under a comment or comment block (I still use the old domain for self-reference and other documentation).
So, basically, what I want to achieve is a regular expression that works given the following:
- Match all the occurrences of
example.comin all lines*. - Don't match the entire line, only the
example.comstring. - If the line starts with
//,/*, or " *" don't match anyexample.cominstance in that single line (although, this might be a problem if a comment block is closed in the same line where it was opened).
- If the line starts with
I usually write my block comments like this:
/* text
* blah
* blah
*/
That's why I don't want to match "example.com" if it's situated after //, /*, or " *".
I figured it would be something like this:
^(?:(?!//|/\*|\s\*).?).*example\.com
But this has one issue: it matches the whole line, instead of "example.com" only (this causes problems mainly when two or more "example.com" strings are matched in a single line).
Can someone please help me fix my regex? Please note: It doesn't have to be a PHP regex, since I could always use a tool like grepWin to locally edit all the files at once.
Oh, and please let me know if there's a way to generalize block comments in some way, like this: once /* is found, do not match example.com until */ is found. That would be extremely useful. Is it possible to achieve it in general (non language-dependent) regular expressions?
/*" etc. instead of "when the line starts with/*? Imagine a lineThis is example.com /* comments starts here- now you would wantexample.comto be replaced, right? – Tim Pietzcker Jul 29 '12 at 8:00