EverNewJoy / VictoryPlugin

Rama's Victory BP Plugin
MIT License
867 stars 256 forks source link

Texts saved contains special characters #66

Closed neur1n closed 4 years ago

neur1n commented 4 years ago

I'm trying to use the File IO Save String Text to File node to work with the Json Blueprint plugin, which means saving the Json strings into a text file. The Json strings contains formatting characters, i.e. \r\n and \t which are invisible during debugging (when I hover the cursor on specific nodes). However, when the strings are saved into a text file, these characters becomes literal strings and additionally a \is inserted before the double quote. An example:

{\"key_1\": value_1, \r\n\t\"key_2": value_2}

I've tried to use regex-replace function to replace these characters, but it didn't work.

neur1n commented 4 years ago

Sorry, it was a mistake.