Functions Documentation
View Function Edit Function
Name strCapitalize
Syntax (strCapitalize string) -> capitalizedString
Argument List string: The string that you want the first character capitalized.
Returns capitalizedString: The passed in string with the first character capitalized.
Category string operator
Description Capitalizes the first character of the string.
Example
(strCapitalize "abcdef")


Returns the string Abcdef.
Comment Basic string function. We need more string functions.