JSTL函数-fn:toUpperCase()

fn:toUpperCase() 函数将字符串的所有字符转换为大写。它用于用相应的大写字母替换输入字符串中的任何小写字母。

fn:toUpperCase() 函数的语法为:

String fn:toUpperCase(String input)  

将输入字符串转换为大写字母后,它返回字符串值。


让我们看一个简单的示例:

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
<html>
<head>
    <title>一点教程网-JSTL函数</title>
</head>
<body>

<c:set var="site" value="yiidian.com"/>
<c:set var="author" value="eric"/>
你好,你访问的是 ${fn:toUpperCase(site)} 由 ${fn:toUpperCase(author)}创建。

</body>
</html>

运行结果为:

热门文章

优秀文章