in reply to Re: Can't match negated words.
in thread Can't match negated words.
You've got capturing parentheses around non-capturing parentheses, around a negative lookbehind. You only need the parens for the negative lookbehind:/\/\*((?:(?<!throw))/
Ok, now you've matched "/*", and at that point, you're looking back to ensure that what comes before you isn't "throw". It can't be, because it ends in "/*". You can't really check everything up to the "/*" with a negative lookbehind, because negative lookbehinds can't be variable-length, and your line can be. You can do it with negative lookahead:/\/\*(?<!throw)/
That will be any number of characters that isn't the start of "throw", followed by "/*". The *? makes it take the first "/*" rather than the last.if ($line =~ /^(?:(?!throw).)*?\/\*/)
Please see this node about YAPE::Regex::Explain for a helpful module.
|
---|