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

From SoftMC-Wiki
Jump to: navigation, search
m (1 revision)
Line 39: Line 39:
 
* [[Axystems:MC-Basic:LCASE$|LCASE$]]
 
* [[Axystems:MC-Basic:LCASE$|LCASE$]]
  
 
+
[[Category:Axystems:MC-Basic:String_Manipulation|UCASE$]]
 
}}
 
}}

Revision as of 15:07, 6 March 2014

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

Syntax

UCASE$(<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 UCASE$(“first step”)
 FIRST STEP

See Also