-
Does Spectral supports word boundaries (i.e. the token Tried to use the following rule to detect "e-mail" in any description field and it seems to break after using \b in the pattern:
Thanks for all support and the team for developing such useful tool! |
Beta Was this translation helpful? Give feedback.
Answered by
P0lip
Nov 18, 2021
Replies: 1 comment 2 replies
-
It does, you just need to get the escaping sorted out.
|
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
htadashi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It does, you just need to get the escaping sorted out.
notMatch: "\be-mail\b"
is not correct, because you don't escape\
.Try the following instead
\\be-mail\\b