Posted 21 September 2012 - 11:15 PM
Hi
I have the following problem:
If I create a file like this:
If I print the variable content, it prints this:
Is there any way to remove the line breaks, so it will print
Thanks
I have the following problem:
If I create a file like this:
Hello
World
then I read this file with
file = fs.open("filename")
content = file.readAll()
If I print the variable content, it prints this:
Hello
World
Is there any way to remove the line breaks, so it will print
HelloWorld
?Thanks