git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@634 0fc631ac-6414-0410-93d0-97cfa31319b6

This commit is contained in:
twanvl
2007-08-28 18:27:37 +00:00
parent 0914c53f0d
commit ccaea98a67
6 changed files with 42 additions and 2 deletions
+14
View File
@@ -0,0 +1,14 @@
Function: trim
--Usage--
> trim(some_string)
Remove leading and trailing whitespace from a string.
--Parameters--
! Parameter Type Description
| @input@ [[type:string]] String to remove whitespace from.
--Examples--
> trim(" abc ") == "abc"
> trim(" one two three ") == "one two three"