JSTL fn:toUpperCase()函數
fn:toUpperCase()函數
fn:toUpperCase() 函數將一個字符串中的所有字符轉為大寫。
語法
fn:toUpperCase() 函數的語法如下:
${fn:toUpperCase(<string>)}
實例演示
以下實例演示了這個函數的功能:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ 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>使用 JSTL 函數</title> </head> <body> <c:set var="string1" value="I am from runoob"/> <c:set var="string2" value="${fn:toUpperCase(string1)}" /> <p>字符串為 : ${string2}</p> </body> </html>
運行結果如下:
字符串為 : I AM FROM RUNOOB