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
URIs.splitpath(::String)
julia> URIs.splitpath(URIs.URI("https://asdf.com/a/b?x=y#z")) 2-element Vector{String}: "a" "b" julia> URIs.splitpath("https://asdf.com/a/b?x=y#z") 5-element Vector{String}: "https:" "" "asdf.com" "a" "b"
Based on the documentation for splitpath, I expected both to return the same result.
splitpath
The text was updated successfully, but these errors were encountered:
Yeah, it seems we need to call URIs.URI on the string input to splitpath
URIs.URI
Sorry, something went wrong.
No branches or pull requests
Based on the documentation for
splitpath
, I expected both to return the same result.The text was updated successfully, but these errors were encountered: