Returns a string with the first letter capitalized.
function UpCaseFirst(S: string): string;
Parameters
S: string
The value to be capitalized.
Returns
String - The string with the initial letter capitalized.
Description
UpCaseFirst is a String function that returns a string with the first letter capitalized. All other letters in the string S are converted to lower case.