Navigation: thinBasic Modules > Core > String handling > UCASE$ |
|
Description
Return an all-uppercase (capitalized) version of a string.
Syntax
s = UCASE$(string_expression)
Returns
String
Parameters
Name |
Type |
Optional |
Meaning |
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
© 2004-2008 thinBasic. All rights reserved. | Version 1.7.0.0 | Web Site: http://www.thinbasic.com |