UCase$

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Core Language > BuiltIn Functions > String functions >

UCase$

 

Description

 

Return an all-uppercase (capitalized) version of a string.

 

Syntax

 

s = UCase$(string_expression)

 

Returns

 

String

 

Parameters

 

Name

Type

Optional

Meaning

string_expression

String

No

The string to convert into upper case letters

 

Remarks

 

Restrictions

 

See also

 

String Handling, LCASE$, MCASE$,

 

Examples

 

Thanks to Abraxas for the following script example

' Usage of the LCASE$ Keyword example

' Usage of the MCASE$ Keyword example

' Usage of the UCASE$ Keyword example

 

Dim MyOLDString   As String VALUE "HELLO WORLD"

Dim MyLCASEString As String

Dim MyMCASEString As String

Dim MyUCASEString As String

Dim sMsg          As String

 

MyLCASEString = LCASE$(MyOLDString) 

MyMCASEString = MCASE$(MyOLDString) 

MyUCASEString = UCASE$(MyOLDString)

 

sMsg += "Normal " & MyOLDString   & $CRLF & $CRLF

sMsg += "LCASE$ " & MyLCASEString & $CRLF & $CRLF

sMsg += "MCASE$ " & MyMCASEString & $CRLF & $CRLF

sMsg += "UCASE$ " & MyUCASEString & $CRLF & $CRLF

 

MSGBOX 0, sMsg