%stringLcFirst()

Aliases%stringLcFirst( )
Parametersstring @value

    Returns the given value with the first character replaced with its lower
case version when applicable.

Example:

@text = "A large man is here."
echo String: [@text]
echo String: [%stringLcFirst( @text )]

Output:

String: [A large man is here.]
String: [a large man is here.]