in reply to Re: finding whole words in a string
in thread finding whole words in a string
Technically it doesn't match `the blank'. As perlre states it matches at a `\w\W' or '\W\w' transition (it doesn't match anything literally as it's zero width, just at a point where the previous character is \w and the next is \W (or vice versa)).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: finding whole words in a string
by hopes (Friar) on May 07, 2002 at 19:24 UTC |