Creating a txt file
Creating a txt file
Does anyone know whether smartfoxserver provide a method to create txt file?
Add a line feed to the end of each line. The line feed code is "\n"
will produce
Hello
World
Code: Select all
str = "Hello\n"
str += "World"Hello
World