"For developers", "Server scripts", "Functions description", "Strings", "LowerCase"
Converting all string symbols to lowercase.
function LowerCase(sSt: string): string;
Parameters |
Type |
Value |
---|---|---|
sSt |
string |
source string. |
Returns a string with the same text, but with all letters converted to lowercase.
const
sSt = 'We ALL lIvE iN A YELLOW submarine, YELLoW SUBmArINE, yeLLOW submaRiNe.';
begin
mLogScript('Original string: "' + sSt + '"', '');
mLogScript(LowerCase(sSt), '');
end.
[14:17:42] (Log "LowerCase"): Original string: "We ALL lIvE iN A YELLOW submarine, YELLoW SUBmArINE, yeLLOW submaRiNe."
[14:17:42] (Log "LowerCase"): we all live in a yellow submarine, yellow submarine, yellow submarine.