-- Convert a string to lower case. procedureTo_Lower
(This : inoutString); -- Change this string.
-- Replace characters in a string. procedureReplace_Char
(This : inoutString; -- Change this string.
A, B : inCharacter); -- Replace A with B.
-- Extract a filename from a path, or an identifier from a fully -- qualified dotted notation. Return the suffix of the string that -- comes after the last occurrence of Char. functionSuffix_After_Char
(This : inString;
Char : inCharacter) returnString;