UCASE$/WUCASE$ |
Top Previous Next |
Syntax STRING = UCASE$(str as STRING) WSTRING = WUCASE$(str as WSTRING) Description Converts a string to all upper case. Parameters str - The string to convert. Return value A copy of the input string converted to upper case. Remarks The input string remains unchanged. See Also: LCASE$ Example usage PRINT UCASE$("convert to upper case please") |