use <space>
for \s
#93
JosuaKrause
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
<whitespace>
for\s
is a bit long and since\s
is more common than" "
I wonder why" "
needs a special tag in the first place? (And<whitespace>
could be<space>
). You can still use" "
to match space characters (0x20
) currently. In my mind a tag (i.e.,<...>
) maps to a special regex symbol so it might also be confusing if<space>
just maps to" "
(which could be put verbatim into a query). Additionally, if you do want to match a single space characterseems easier to read than
Just my two cents :)
Beta Was this translation helpful? Give feedback.
All reactions