Hope Word Boundary in regular expressions can be used:
\< Matches the start of a word.
\> Matches the end of a word.
\b Matches a word boundary (the start or end of a word).
\B Matches only when not at a word boundary.
Thank you!
Word Boundary in regular expressions
-
bobm
- Posts: 26
- Joined: Fri Aug 21, 2015 11:27 am
Re: Word Boundary in regular expressions
I would also like to see this.
-
void
- Developer
- Posts: 19903
- Joined: Fri Oct 16, 2009 11:31 pm
Re: Word Boundary in regular expressions
The next update of Everything will support Perl Compatible Regular Expressions (PCRE). PCRE supports word boundaries.
-
therube
- Posts: 5727
- Joined: Thu Sep 03, 2009 6:48 pm
Re: Word Boundary in regular expressions
Heh.PCRE
I've had this opening, for some time now, whenever I start my browser, https://www.google.com/search?q=pcre&cl ... cial&gbv=1.
One day I'll get around to actually reading through it. (Actually I have dabbled with it.)