Difference between revisions of "Uppercase"
From Mesham
Jump to navigationJump to search (Created page with '== Overview == This uppercase[s] function will return the upper case result of string or character ''s''. * '''Pass:''' A string or character * '''Returns:''' A string or chara…') |
m (4 revisions imported) |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
== Overview == | == Overview == | ||
− | This uppercase | + | This uppercase(s) function will return the upper case result of string or character ''s''. |
− | * '''Pass:''' A | + | * '''Pass:''' A [[String]] |
− | * '''Returns:''' A | + | * '''Returns:''' A [[String]] |
== Example == | == Example == | ||
+ | #include <string> | ||
+ | |||
+ | function void main() { | ||
+ | var a:="HeLlO"; | ||
+ | var c:=uppercase(a); | ||
+ | }; | ||
− | + | ''Since: Version 0.41b'' | |
− | |||
[[Category:Function Library]] | [[Category:Function Library]] | ||
[[Category:String Functions]] | [[Category:String Functions]] |