From Clomosy Docs
ClomosyAdmin (talk | contribs) No edit summary |
ClomosyAdmin (talk | contribs) No edit summary |
||
| Line 24: | Line 24: | ||
<h2> See Also </h2> | <h2> See Also </h2> | ||
* [[System_Library#String_Functions | String Functions]] | * [[System_Library#String_Functions | String Functions]] | ||
{{#seo:|title=LowerCase Using in Clomosy - Clomosy Docs}} | |||
{{#seo:|description=Use the LowerCase function in Clomosy to convert all letters in a string to lowercase, ensuring uniform text formatting.}} | {{#seo:|description=Use the LowerCase function in Clomosy to convert all letters in a string to lowercase, ensuring uniform text formatting.}} | ||
Latest revision as of 15:02, 24 December 2024
function LowerCase(const S: string):string;
Creates a copy of string with all letters converted to lower case.
Example
var
SimpleString : String;
{
SimpleString = LowerCase('I am learning CLOMOSY.');
ShowMessage(SimpleString);
}
Output:
i am learning clomosy.