We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add any variant for using of whitespace & non-whitespace character/s
%
*?+#
&
for example:
1%+5
125
12345
1%##5
1235
1775
1%?5
15
145
1%*5
123467895
configurable % + & like:
search(const TCHAR* data, const TCHAR* filter, const TCHAR* whsp, const TCHAR* nonwhsp)
_T("qwerty012345...") _T(" ")
or simply:
search(const TCHAR* data, const TCHAR* filter, const TCHAR* whsp)
_T(" ") - all except this is a non-whitespace character
but the first variant is more flexible for using special set of characters for both cases of % + &
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add any variant for using of whitespace & non-whitespace character/s
v1 - single meta-symbol + std. quantifier
%
- whitespace + quantifier*?+#
&
- non-whitespace + quantifier*?+#
for example:
1%+5
->125
,12345
, ...1%##5
->1235
,1775
, ...1%?5
->15
,125
,145
, ...1%*5
->123467895
,15
, ...configurable
%
+&
like:or simply:
but the first variant is more flexible for using special set of characters for both cases of
%
+&
The text was updated successfully, but these errors were encountered: