%stringUcFirst()

Aliases%stringUcFirst( )
Parametersstring @value

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

Example:

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

Output:

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