Proper()

Summary

Converts a string to proper case (first letter of each word capitalized).

Syntax

new_string = Proper(string old_string)

Argument Contents
old_string Any string

Returns

A string indicating the proper case version of old_string.

Example

str = Proper("sample SAMPLE") // str = "Sample Sample"
str = Proper("JOHN SMITH") // str = "John Smith"

See Also

Function Summary
Upper() Converts a string to upper case
Lower() Converts a string to lower case