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
Default Scanner (SimpleScanner) and Terminal parser functions should have unicode support, along with utf8 encoding.
The text was updated successfully, but these errors were encountered:
While at it, add support for white spaces in unicode, for instance SimpleScanner.SkipWS().
Sorry, something went wrong.
Added test case for unicode parsing #8.
8589a49
Draft implementation for checking unicode whitespace #8.
5385952
Skipping Unicode whitespace can be achieved by using SetWSPattern() API. By setting the necessary whitespace unicode-points.
There is also unicode category called, Separator, Spaces http://www.fileformat.info/info/unicode/category/Zs/list.htm
Separator, Spaces
Can be used with golang's regexp \p{}: https://golang.org/pkg/regexp/syntax/
\p{}
prataprc
No branches or pull requests
Default Scanner (SimpleScanner) and Terminal parser functions should have unicode support, along with utf8 encoding.
The text was updated successfully, but these errors were encountered: