B
bbla32
Hey, is there a fast way to change a string used for formatting, like
Value:\t{0}\r\n
to string that user can edit, like:
Value:\\t{0}\\r\\n
In other words, I want user to be able to edit a format string. Is
there a quicker way than
format.Replace("\r", "\\r").Replace("\n", "\\n").Replace("\t", "\
\t"). ....
Value:\t{0}\r\n
to string that user can edit, like:
Value:\\t{0}\\r\\n
In other words, I want user to be able to edit a format string. Is
there a quicker way than
format.Replace("\r", "\\r").Replace("\n", "\\n").Replace("\t", "\
\t"). ....