<< Prev        Next >>

ID : 758

LCase

Function

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

Syntax

LCase(string)

Guaranteed entry

string
Designate string type data.

Return value

Return string type data.

Description

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

Only alphabetical upper cases can be converted.

Related Terms

UCase

Attention

-

Example

'!TITLE "Sample of LCase"

Sub Sample_LCase 

  Dim aaa As String
  aaa = "Abcc_Cdef"
  PrintDbg LCase(aaa) ' print "abcc_cdef"

End Sub

ID : 758

<< Prev        Next >>