<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<c:set var="names" value="Joe:Petter;Ryan|John" scope="page" />
<html>
<head>
<title>forTokens action</title>
</head>
<body>
<c:forTokens items="${pageScope.names}"
delims=":;|"
var="currentName"
varStatus="status"
>
Family member #<c:out value="${status.count}" /> is
<c:out value="${currentName}" /> <br />
</c:forTokens>
</body>
</html>
|