Difference between revisions of "MC-Basic:UCASE$"
m (1 revision) |
|||
(6 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
+ | {{Languages|MC-Basic:UCASE$}} | ||
{{MC-Basic | {{MC-Basic | ||
|SHORT FORM= | |SHORT FORM= | ||
Line 13: | Line 14: | ||
|TYPE= | |TYPE= | ||
− | '' | + | <''return value''>: String<br> |
''<string>'': String | ''<string>'': String | ||
|RANGE= | |RANGE= | ||
− | '' | + | <''return value''>: String<br> |
''<string>'': String | ''<string>'': String | ||
Line 30: | Line 31: | ||
|LIMITATIONS= | |LIMITATIONS= | ||
− | Read | + | Read only |
|EXAMPLE= | |EXAMPLE= | ||
Line 37: | Line 38: | ||
|SEE ALSO= | |SEE ALSO= | ||
− | * [[ | + | * [[MC-Basic:LCASE$|LCASE$]] |
− | |||
+ | [[Category:MC-Basic:String Manipulation|UCASE$]] | ||
}} | }} |
Latest revision as of 09:53, 2 May 2017
Language: | English • 中文(简体) |
---|
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