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
> s = sample(letters, 859000000, replace = T) |> paste0(collapse='') > stringi::stri_detect_regex(substr(s, 1, 858993457), 'Warning') [1] FALSE > stringi::stri_detect_regex(substr(s, 1, 858993458), 'Warning') Error in stringi::stri_detect_regex(substr(s, 1, 858993458), "Warning") : Illegal argument. (U_ILLEGAL_ARGUMENT_ERROR)
The text was updated successfully, but these errors were encountered:
This is actually a bug in a few functions. Fix on the way.
stri_detect_regex(stri_dup("x", 858993458), "x") ## [1] TRUE
Sorry, something went wrong.
358b147
No branches or pull requests
The text was updated successfully, but these errors were encountered: