大小写转换函数

1.toLowerCase

toLowerCase函数用于将字符串中的字母全部转换为小写,函数返回转换后的字符串,函数的功能相当于调用java.lang.String类的toLowerCase()方法。使用toLowerCase函数的语法如下:

 
  1. fn:toLowerCase(要转换的字符串) 

2.toUpperCase

toUpperCase函数用于将字符串中的字母全部转换为大写,函数返回转换后的字符串,函数的功能相当于调用java.lang.String类的toUpperCase ()方法。使用toUpperCase函数的语法如下:

 
  1. fn:toUpperCase (要转换的字符串) 

你可能感兴趣的:(大小写)