-
Notifications
You must be signed in to change notification settings - Fork 596
New issue
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
Cyrillic #272
Comments
However, you missed that But this is a long-standing issue - see issues #238 and #37 and pull request #168. ============= |
Correction 1: Correction 2: My comment about a long list of Cases can also be applied to the current code. Several optimisations are possible.
If implemented on top of pull request #168, the function becomes:
|
Private Function json_Encode(ByVal json_Text As Variant) As String
' Reference: http://www.ietf.org/rfc/rfc4627.txt
' Escape: ", , /, backspace, form feed, line feed, carriage return, tab
Dim json_Index As Long
Dim json_Char As String
Dim json_AscCode As Long
Dim json_Buffer As String
Dim json_BufferPosition As Long
Dim json_BufferLength As Long
End Function
The text was updated successfully, but these errors were encountered: