Files
MagicSetEditor2/doc/function/to_upper.txt
T
twanvl 689def7325 Yet more function documentation
git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@571 0fc631ac-6414-0410-93d0-97cfa31319b6
2007-07-14 00:29:25 +00:00

19 lines
432 B
Plaintext

Function: to_upper
--Usage--
> to_upper(some_string)
Convert a string to upper case.
--Parameters--
! Parameter Type Description
| @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"@.