Hey all,
So I’m reading an XML Value from a file - a string value that says something like “Hello World. How are you?”
In the xml file, I’ve written it as “Hellow World. \n How are you?”
This was in the hopes that when I return it as a string, it would display as two line s- but right now it just returns it as is. Is there an easy way I can take this string and apply the formatting properly so it outputs as:
Hello World.
How are you?
Thanks in advance!