当前位置:Gxlcms >
ASP >
ASP字符串大写转换成小写 ASP小写转换成大写 ucase lcase
ASP字符串大写转换成小写 ASP小写转换成大写 ucase lcase
时间:2021-07-01 10:21:17
帮助过:58人阅读
LCase:转成小写
UCase:转成大写
下面是ASP中的代码,可以直接演示效果的。
代码如下:
<%
dim str,str1,str2
str="AbCdEf"
str1=LCase(str)
str2=UCase(str)
Response.write("LCase转换小写"&str1 & ",UCase转换大写" & str2)
%>
而.NET中将字符串转换为大写ToUpper(),将字符串转换为小写ToLower()。