File: Trim.jsp

package info (click to toggle)
glassfish 1%3A2.1.1-b31-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 137,420 kB
  • ctags: 168,594
  • sloc: java: 1,051,703; xml: 48,451; jsp: 4,967; ansic: 1,442; perl: 1,200; sh: 562; makefile: 340; cpp: 336; sql: 78; haskell: 76; awk: 69; ruby: 58; sed: 21; lisp: 5
file content (48 lines) | stat: -rw-r--r-- 1,178 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>

<html>
<head>
  <title>JSTL Functions &#149; Trim</title>
</head>
<body bgcolor="#FFFFFF">

<h2>Trim</h2>

<c:set var="s1" value="There is a castle on a cloud"/>
<c:set var="custId" value=" 123 "/>

<h4>fn:trim</h4>
<table cellpadding="5" border="1">
  <tr>
    <th align="left">Input String</th>
    <th>Result</th>
  </tr>
  <tr>
    <td><pre>${custId} (whithout trim)</pre></td>
    <td><c:url value="http://acme.com/cust"><c:param name="custId" value="${custId}"/></c:url></td>
  </tr>
  <tr>
    <td><pre>${custId} (whith trim)</pre></td>
    <td><c:url value="http://acme.com/cust"><c:param name="custId" value="${fn:trim(custId)}"/></c:url></td>
  </tr>
  <tr>
    <td>${s1}</td>
    <td>${fn:trim(s1)}</td>
  </tr>
  <tr>
    <td><pre>    3 spaces before and after   </pre></td>
    <td><pre>${fn:trim("    3 spaces before and after   ")}</pre></td>
  </tr>
  <tr>
    <td>null</td>
    <td>&nbsp;${fn:trim(undefined)}</td>
  </tr>
  <tr>
    <td>empty string</td>
    <td>&nbsp;${fn:trim("")}</td>
  </tr>
</table>

</body>
</html>