StrConv: vbLowerCase : StrConv « String Functions « VBA / Excel / Access / Word






StrConv: vbLowerCase

 
Sub UsefulStringFunctions() 
    Dim sTestWord As String 
    sTestWord = "The moon over Minneapolis is big and bright." 
    Debug.Print sTestWord
    Debug.Print StrConv(sTestWord, vbLowerCase) 
End Sub    

 








Related examples in the same category

1.vbUpperCase: Converts the given string to uppercase characters.
2.vbLowerCase: Converts the given string to lowercase characters.
3.vbProperCase: Converts the given string to propercase (aka title case-the first letter of every word is capitalized).
4.vbUnicode: Converts the given string to Unicode using the system's default code page.
5.vbFromUnicode: Converts the given string from Unicode to the system's default code page.
6.StrConv: vbUpperCase
7.StrConv: vbProperCase