Latest web development tutorials

JSTL fn: funzione TRIM ()

Biblioteca JSP Standard Tag Biblioteca JSP Standard Tag

fn: funzione TRIM () rimuoverà stringa di spazi finisce.

grammatica

fn: funzione Trim () ha la seguente sintassi:

${fn.trim(<string>)}

Esempi Demo

I seguenti esempi dimostrano le capacità di questa funzione:

<%@ 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 w3big         "/>
<p>string1 长度 : ${fn:length(string1)}</p>

<c:set var="string2" value="${fn:trim(string1)}" />
<p>string2 长度 : ${fn:length(string2)}</p>
<p>字符串为 : ${string2}</p>

</body>
</html>

I risultati sono i seguenti:

string1 长度 : 25

string2 长度 : 16

字符串为 : I am from w3big

Biblioteca JSP Standard Tag Biblioteca JSP Standard Tag