Difference between revisions of "MC-Basic:LCASE$"

From SoftMC-Wiki
Jump to: navigation, search
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
 +
{{Languages|MC-Basic:LCASE$}}
 
{{MC-Basic
 
{{MC-Basic
 
|SHORT FORM=
 
|SHORT FORM=
Line 39: Line 40:
 
* [[MC-Basic:UCASE$|UCASE$]]
 
* [[MC-Basic:UCASE$|UCASE$]]
  
[[Category:Axystems:MC-Basic:String_Manipulation|LCASE$]]
+
[[Category:MC-Basic:String Manipulation|LCASE$]]
 
}}
 
}}

Latest revision as of 08:19, 4 July 2017

Language: English  • 中文(简体)‎

LCASE$ returns a copy of the string passed to it with all the uppercase letters converted to lowercase.

Syntax

LCASE$(<string>)

Availability

All versions

Type

<return value>: String
<string>: String

Range

<return value>: String
<string>: String

Scope

Configuration, Task or Terminal

Limitations

Read only

Examples

-->PRINT LCASE$(“ FIRST STEP”)
  FIRST STEP

See Also