Difference between revisions of "Lowercase"

From Mesham
Jump to navigationJump to search
m
Line 3: Line 3:
 
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]
+
* '''Pass:''' A [[String]]
 
* '''Returns:''' A [[String]]
 
* '''Returns:''' A [[String]]
  

Revision as of 13:19, 13 January 2013

Overview

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

Example

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