493: Undecipherable

-Blog-

-Projects-

-About me-

-RSS-

Mathematica 11.1: Issue parsing German characters using ImportString[]

Dennis Guse

German characters in ImportString[data, "RawJSON"] break during parsing. A string containing the German character “ß” (also tested “ä”) will be broken, ie., the letter as well as the following letters are not correct.

Affects Mathematica 11.1.

ImportString["{\"test1\":\"ABCäABC\",\"test2\":\"ABCßABC\"}", "RawJSON"]
<|"test1" -> "ABC。C", "test2" -> "ABCށBC"|>

This also remains using Export[].

Workaround: Association = ImportString[SOMTHING, "JSON"].