Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 373 Bytes

76_stake_the_boundaries_of_a_word.md

File metadata and controls

15 lines (9 loc) · 373 Bytes

Stake the boundaries of a word

the problem with these new recruits is that
they don't keep their boots clean.

/the - will yield results with words where "the" is embedded, like "they"
/\v<the> - will find only the exact macthes

The < and > are zero-width items, they represent boundaries.

/\<the\> - will match the angle brackets as chars