%stringUcFirstAll()

Aliases%stringUcFirstAll( )
Parametersstring @value

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

Example:

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

Output:

String: [a large beast-man is here.]
String: [A Large Beast-Man Is Here.]