From Clomosy Docs
(Created page with " function LowerCase(const MixedString string):string; The LowerCase function creates a copy of String with all letters converted to lower case. All Ansi commands support multi-byte and accented characters.<br> '''Syntax:'''<br> LowerCase(StringValue) '''Example:'''<br> :'''Base Syntax''' var SimpleString : String; begin SimpleString := LowerCase('I am learning CLOMOSY.'); ShowMessage(SimpleString); end; :'''TRObject Syntax''' var SimpleString : Stri...") |
ClomosyAdmin (talk | contribs) No edit summary |
||
| (4 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
<div class="alert alert-ligth border border-3 border-primary-subtle rounded-5 p-4 shadow-sm" role="alert"> | |||
function LowerCase(const S: string):string; | |||
</div> | |||
Creates a copy of string with all letters converted to lower case.<br> | |||
<b>Example</b><br> | |||
<pre> | |||
var | |||
SimpleString : String; | |||
{ | |||
SimpleString = LowerCase('I am learning CLOMOSY.'); | |||
ShowMessage(SimpleString); | |||
} | |||
</pre> | |||
: | <b>Output:</b> | ||
<div class="alert alert-success" role="alert" data-bs-theme="light"> | |||
i am learning clomosy. | |||
</div> | |||
<h2> See Also </h2> | |||
* [[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.}} | |||
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.