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
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<head>
<title>JSTL: Iterator Support -- forTokens Example</title>
</head>
<body bgcolor="#FFFFFF">
<h3><forTokens></h3>
<h4>String with '|' delimiter</h4>
<c:forTokens var="token" items="bleu,blanc,rouge|vert,jaune|blanc,rouge"
delims="|">
<c:out value="${token}"/> •
</c:forTokens>
<h4>String with '|' and ',' delimiters</h4>
<c:forTokens var="token" items="bleu,blanc,rouge|vert,jaune|blanc,rouge"
delims="|,">
<c:out value="${token}"/> •
</c:forTokens>
</body>
</html>
|