v0.4.0
Support edge markers:
symbol | description | Suggestion |
---|---|---|
\A | at beginning of text | Chars.BeginOfText() |
\b | at ASCII word boundary (\w on one side and \W, \A, or \z on the other) | Chars.ASCIIWordBoundary() |
\B | not at ASCII word boundary | Chars.NotASCIIWordBoundary() |
\z | at end of text | Chars.EndOfText() |