<< Prev        Next >>

ID : 759

UCase

Function

Return a value "alphabetical upper case" after converting from lower case.

Syntax

UCase(string)

Guaranteed entry

string
Designate string type data.

Return value

Return string type data.

Description

Convert all the alphabetical lower cases in the string designated in argument string into upper cases.

Only alphabetical lower cases can be converted.

Related Terms

LCase

Attention

-

Example

'!TITLE "Sample of UCase"

Sub Sample_UCase

  Dim aaa As String
  aaa = "Abcc_Cdef"
  PrintDbg UCase(aaa) ' print "ABCC_CDEF"

End Sub

ID : 759

<< Prev        Next >>