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
One cool feature of PCRE2 not available in Rust Regex is partial matching.
Can we have a way to set the following options: PCRE2_PARTIAL_HARD PCRE2_PARTIAL_SOFT and interpret the PCRE2_ERROR_PARTIAL return code as success?
PCRE2_PARTIAL_HARD
PCRE2_PARTIAL_SOFT
PCRE2_ERROR_PARTIAL
I'd provide it as a separate method on Regex e.g is_partial_match.
Regex
is_partial_match
The text was updated successfully, but these errors were encountered:
#13
Sorry, something went wrong.
No branches or pull requests
One cool feature of PCRE2 not available in Rust Regex is partial matching.
Can we have a way to set the following options:
PCRE2_PARTIAL_HARD
PCRE2_PARTIAL_SOFT
and interpret the
PCRE2_ERROR_PARTIAL
return code as success?I'd provide it as a separate method on
Regex
e.gis_partial_match
.The text was updated successfully, but these errors were encountered: