Re: Manual
- Posted by useless Oct 15, 2010
- 1407 views
DerekParnell said...
useless said...
Did you want comments on the manual as they could be made? If so, just to save time, the example for trim() should show something besides removing "\r\n" from a sequence that contains exactly that. I'd use this example
s = trim(" This is a sentence\n","\r\n ") -- s = "This is sentence"
useless
Ok, I added this example ...
s = trim(" This is a sentence.\n") -- Default is to trim off all " \t\r\n" -- s is "This is a sentence."
I looked at
http://www.openeuphoria.org/docs/eu400_0085.html#_3577_trim
and i saw no such change.
useless