String ToUpper function
String.ToUpper() is a function which converts a string into uppercase letters.
System.String is the library for this function.
Example
Dim str1 As String = "Saad Bin Saulat"
MsgBox(str1.ToUpper())
Result
The message box will display "SAAD BIN SAULAT".
Related articles
0 comments:
Post a Comment