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…')
 
Line 1: Line 1:
 
== Overview ==
 
== Overview ==
  
This uppercase[s] function will return the upper case result of string or character ''s''.
+
This uppercase(s) function will return the upper case result of string or character ''s''.
  
* '''Pass:''' A string or character
+
* '''Pass:''' A [[String]]
* '''Returns:''' A string or character
+
* '''Returns:''' A [[String]]
  
 
== Example ==
 
== Example ==
  
 
+
#include <string>
 
  var a:="HeLlO";
 
  var a:="HeLlO";
  var c:=uppercase[a];
+
  var c:=uppercase(a);
  
 
[[Category:Function Library]]
 
[[Category:Function Library]]
 
[[Category:String Functions]]
 
[[Category:String Functions]]

Revision as of 13:26, 13 January 2013

Overview

This uppercase(s) function will return the upper case result of string or character s.

Example

#include <string>
var a:="HeLlO";
var c:=uppercase(a);