Lowercase
From Mesham
Jump to navigationJump to searchOverview
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");