strLwr Function

Converts all letters in a text string to lowercase.


str strLwr(str _text)

Parameter

Description

_text

The string to convert to lowercase.

The string equivalent to text in all lowercase letters.

The strLwr function is complementary to the strUpr function.

The strLwr function uses the LCMapString() function in the Win32 API.

static void strLwrExample(Args _args)
{
    // Returns the text string "abcdd55efghij".
    print strLwr("Abcdd55EFGHIJ");
    pause;
}

Community Additions

ADD
Show: