in reply to Re^3: regex at word boundary
in thread regex at word boundary
(?!) explained:
From perlre: "A zero-width negative look-ahead assertion. For example /foo(?!bar)/ matches any occurrence of "foo" that isn't followed by "bar"." So in other words, (?!) is a negative lookahead assertion that "must not match nothing" (an impossibility).
YAPE::Regex::Explain describes it simply like this:
perl -MYAPE::Regex::Explain -e "printYAPE::Regex::Explain->new( qr/(?! +)/ )->explain();" The regular expression: (?-imsx:(?!)) matches as follows: NODE EXPLANATION ---------------------------------------------------------------------- (?-imsx: group, but do not capture (case-sensitive) (with ^ and $ matching normally) (with . not matching \n) (matching whitespace and # normally): ---------------------------------------------------------------------- (?!) fail ---------------------------------------------------------------------- ) end of grouping ----------------------------------------------------------------------
Dave
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: regex at word boundary
by QM (Parson) on Dec 08, 2005 at 05:12 UTC |