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
ХPath expression with non-latin letters throws an error:
f := strings.NewReader(`<?xml version="1.0" encoding="utf-8"?> <data_list> <data> <Σειρά>1</Σειρά> </data> <data> <Σειρά>2</Σειρά> </data> </data_list> `) doc, err := xmlquery.Parse(f) if err != nil { log.Fatal(err) return } expr, err := xpath.Compile(`Σειρά`) if err != nil { log.Fatal("Compile error: ", err) } ...
Compile error: Σειρά has an invalid token. exit status 1
Is it possible to compile an xpath expression with non-latin letters?
The text was updated successfully, but these errors were encountered:
Submitted a PR #100
Sorry, something went wrong.
No branches or pull requests
ХPath expression with non-latin letters throws an error:
Is it possible to compile an xpath expression with non-latin letters?
The text was updated successfully, but these errors were encountered: