Sometime JSON string have two backslashes before quote, like this:
"keywords":[
"\\David Knopfler\\",
If we count how many backslashes if before quote we can tell if the count of backslash before quote is odd:
if (backSlashesCounter%2 == 1)
we can go outside of JSON string
Sometime JSON string have two backslashes before quote, like this:
If we count how many backslashes if before quote we can tell if the count of backslash before quote is odd:
if (backSlashesCounter%2 == 1)
we can go outside of JSON string