9.3.1 Capitalize_Text_Utils Procedure

The Capitalize_Text_Utils procedure returns a capitalized version of the input string. That is, the string is all in lowercase except for the first letter of every word, which is uppercase. Words are defined as contiguous strings of letters, and all non-letter characters define word boundaries.

Calling syntax:

Character = Capitalize(String)

Input variables:

 String  The String to be capitalized.

Output variable:

 Capitalize  The capitalized version of the input String.

The Capitalize_Text_Utils code listing contains additional documentation.

Michael L. Hall