Go to: Synopsis. Return value. MEL examples.

Synopsis

string capitalizeString(string $s)

Capitalize a string. Take the first character of a string and convert it to uppercase.

Return value

None

Arguments

Variable Name Variable Type Description
$sstringString to capitalize.

MEL examples

	capitalizeString("maya")
	// Result: "Maya" //