ArmedEmperor977
Member
I need to save a json file to read after. but when it save de file, it lose two essential character. This is the part of the file that i send:
"key": "value<br><font size = \"1\">value</font>",
And this is what it goes to the file:
"key": "value<br><font size = "1">value</font>",
It loses the two "\" next to the 1. In the code, I am using this command:
File.WriteString(File.DirApp,"file_name.json",value)
"key": "value<br><font size = \"1\">value</font>",
And this is what it goes to the file:
"key": "value<br><font size = "1">value</font>",
It loses the two "\" next to the 1. In the code, I am using this command:
File.WriteString(File.DirApp,"file_name.json",value)