Shiny Language Reference

Language Reference > String Functions


strlower

string strlower(string Target);

 

Synonyms

string tolower(string Target);

string makelower(string Target);

 

Forces a string to lowercase

STRLOWER forces the specified string to lowercase. This is useful for performing comparisons on strings, which are normally case-sensitive.

 

Parameters

Target

The string to make lowercase

 

Return Value

The passed string, converted to lowercase.

 

Example Code

// LowerCaseString will equal "this will be lowercase"
string LowerCaseString = strlower("tHiS wIlL bE LoWeRCaSe");