LowerCase |
Top Previous Next |
Prototype
StrOutput:=LowerCase(strInput)
Description
Returns the string parameter in lower-case.
Parameters
StrInput: input string.
Returned value
StrOutput: output string.
Notes
None.
Example
// Open a text file strFile:=TextFileOpen('c:\documents\letter.txt',false);
// Read a line from file Text:=TextFileReadln(strFile);
// Log a message with the read text ApplicationLog('File contains the following text: ' + Text);
// This returns strings in lower-case NewText=LowerCase(Text);
// Show a message with the modified read text ApplicationLog('Here it is the modified text : ' + NewText);
// Close the file FileClose(strFile); |