Quote:
Originally Posted by Rapidwolve
I want to save a string with saveLines(), when I use tokenize("\n"); to remove the '\n' all it does is escape it ('\\n'); How do I get rid of the '\n' all together to make an array?
|
PHP Code:
tokens = var.tokenize("\\n");
That should work, Try it.