Files
MagicSetEditor2/doc/function/to_upper.txt
T
twanvl 32c1b5f4d1 More function documentation
git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@568 0fc631ac-6414-0410-93d0-97cfa31319b6
2007-07-13 20:03:43 +00:00

18 lines
400 B
Plaintext

Function: to_upper
--Usage--
> to_upper(some_string)
Convert a string to upper case.
--Parameters--
| @input@ [[type:string]] String to convert.
--Examples--
> to_upper("abc") == "ABC"
> to_upper("123 aBc") == "123 ABC"
--See also--
| [[fun:to_lower]] Convert a string to lower case, @"aBc" -> "abc"@.
| [[fun:to_title]] Convert a string to title case, @"aBc" -> "Abc"@.