contents   index   previous   next



Clib.strlwr()

syntax:

Clib.strlwr(str)

where:

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

 

return:

string - the value of str after conversion of case.

 

description:

This method converts all uppercase letters in str to lowercase, 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.strupr(), String toLowerCase()

 

 


Clib.strncat()