Complete-Reference-Vb Net 20
Complete-Reference-Vb Net 20
ToCharArray
The ToCharArray method lets you copy a String to a character array. You can easily reference the character
array as follows:
ho
ToLower, ToUpper
Often, you might need to convert characters to either upper− or lowercase. The methods ToLower and
ToUpper allow you to toggle text as lower− or uppercase. For example, the code
writes HOLY COW to the console. ToLower converts uppercase to lowercase. Incidentally, the method does
not take an argument.
The trim functions let you trim white spaces from the beginning and end of Strings. Trim lets you trim the
start and end of Strings with one call.
504