strLwr Function

Converts all letters in the specified string to lowercase.


str strLwr(str _text)

Parameter

Description

_text

The string to convert to lowercase.

A copy of the specified string with only lowercase letter.

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: