fortokens.jsp

来自「基于netbeans的java桌面应用程序合集」· JSP 代码 · 共 26 行

JSP
26
字号
<%@ 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>&lt;forTokens&gt;</h3>

<h4>String with '|' delimiter</h4>

<c:forTokens var="token" items="bleu,blanc,rouge|vert,jaune|blanc,rouge"
              delims="|">
  <c:out value="${token}"/> &#149;
</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}"/> &#149;
</c:forTokens>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?