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
contains(str, needle::String) has been deprecated. However from the release notes:
ismatch(regex, str) has been deprecated in favor of contains(str, regex)
It looks as if the deprecation is looking for something like an AbstractString and incorrectly catches the contains(str, regex) case.
The text was updated successfully, but these errors were encountered:
It appears that this deprecation message is very misleading.
Function contains does not exist in Julia v1.0.0 at all. Instead the above deprecation message should state occursin(regex, str) instead.
Sorry, something went wrong.
Closing as outdated since we've dropped support for Julia prior to 1.0.
No branches or pull requests
contains(str, needle::String) has been deprecated. However from the release notes:
ismatch(regex, str) has been deprecated in favor of contains(str, regex)
It looks as if the deprecation is looking for something like an AbstractString and incorrectly catches the contains(str, regex) case.
The text was updated successfully, but these errors were encountered: