大写或小写的字符串
代码:
<!DOCTYPE html>
<html>
<body>
<br />
<%
name = "Bill Gates"
response.write(ucase(name))
response.write("<br>")
response.write(lcase(name))
%>
<br />
</body>
</html>
结果:
BILL GATES
bill gates
bill gates
相关文章