字符串变小写String  toLowerCase(String  Str)

功能:将字符串中的所有字母小写

返回值:返回处理完的字符串。

     例:

     string  x="ABCD";

     x= toUpperCase(x);

     x的结果为abcd