strLwr Function [AX 2012]

Updated: December 10, 2009

Applies To: Microsoft Dynamics AX 2012 R2, Microsoft Dynamics AX 2012 Feature Pack, Microsoft Dynamics AX 2012

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;
}

Announcements: To see known issues and recent fixes, use Issue search in Microsoft Dynamics Lifecycle Services (LCS).

Community Additions

ADD
Show: