Contents - Index


UPPERCASE$

 

The UPPERCASE$ function accepts one string variable or string constant argument.  It returns a string in which all letters in the string are converted to uppercase.  It is usually not necessary to change the case of strings as all string comparisons are case insensitive.  Only the display is changed.

 

 

Example:  E$=UpperCase$('ees') "Sets E$ to 'EES'

 

Return to String Functions