JSTL函数 fn:toUpperCase()

JSTL函数 fn:toUpperCase(),它与fn:toLowerCase() 函数正好相反。它将输入字符串转换为大写字符串。输入字符串的所有字符都被替换为相应的大写字符。需要更改的字符串作为函数的参数提供,并且函数返回转换后的字符串。我们可以将字符串作为变量传递,或者只是在函数调用期间对其进行硬编码。

fn:toUpperCase()语法

String fn:toUpperCase(String input)

它将输入字符串转换为大写后返回String

fn:toUpperCase()示例

在这里,我们使用该函数将少量字符串转换为其大写字母。

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
<html>
<head>
<title>fn:toUpperCase() example</title>
</head>
<body>
  <c:set var="site" value="BeginnersBook.com"/>
  <c:set var="author" value="Chaitanya"/>
  Hi This is {fn:toUpperCase(author)} from{fn:toUpperCase(site)}.
</body>
</html>

输出:

字符串"author""site"被所有大写字母替换。

JSTL函数 fn:toUpperCase()

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程