contents   index   previous   next



Clib.strupr()

syntax:

Clib.strupr(str)

where:

str - string in which to change case of characters to uppercase.

 

return:

string - the value of str after conversion of case.

 

description:

This method converts all lowercase letters in str to uppercase, starting at str[0] and ending before the terminating null byte. The return is the value of str, that is, a variable pointing to the start of str at str[0].

 

see:

Clib.strlwr(), String toUpperCase()

 

 


Clib.toascii()