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
The lineRegex.firstMatch(dataLine)! statement fails when the input contains the U+2028 character (Line Separator). This issue occurs because:
lineRegex.firstMatch(dataLine)!
onError
try-catch
The text was updated successfully, but these errors were encountered:
Amazing catch!
Sorry, something went wrong.
No branches or pull requests
Problem
The
lineRegex.firstMatch(dataLine)!
statement fails when the input contains the U+2028 character (Line Separator). This issue occurs because:onError
callback is never invoked.Solution
try-catch
to ensure errors are properly handled.The text was updated successfully, but these errors were encountered: