Hi Derrick,
Hi,
I'm trying to understand if a regular expression I've designed is
working correctly. It seems that I can make the regular expression
match work "off by one" character in certain circumstances. For
instance:
The pattern: ".{1,3}" finds 1 to 3 characters, however
The pattern: ".[^b]{1,3}" finds 1 to 4 characters...?
<dice>