Difference between revisions of "Lowercase"

From Mesham
Jump to navigationJump to search
(Created page with '== Overview == This lowercase[s] function will return the lower case result of string or character ''s''. * '''Pass:''' A string or character * '''Returns:''' A string or chara…')
 
Line 1: Line 1:
 
== Overview ==
 
== Overview ==
  
This lowercase[s] function will return the lower case result of string or character ''s''.
+
This lowercase(s) function will return the lower 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 ==
  
var a:="HeLlO";
+
#include <string>
var c:=lowercase[a];
+
var a:="HeLlO";
 +
var c:=lowercase(a);
 +
var d:=lowercase("TeST");
  
 
[[Category:Function Library]]
 
[[Category:Function Library]]
 
[[Category:String Functions]]
 
[[Category:String Functions]]

Revision as of 13:19, 13 January 2013

Overview

This lowercase(s) function will return the lower case result of string or character s.

  • Pass: A [[String]
  • Returns: A String

Example

#include <string>
var a:="HeLlO";
var c:=lowercase(a);
var d:=lowercase("TeST");