⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 c_fortokens.jsp

📁 jsp开发详解第15章全部代码
💻 JSP
字号:
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<html>
<head>
  <title>JSTL: Iterator Support -- forTokens Example</title>
</head>
<body bgcolor="#FFFFFF">

<h3><forTokens></h3>

<h4>使用 '|' 作为分割符</h4>
<c:forTokens var="token" items="blue,red,green|yellow|pink,black|white"
              delims="|">
  <c:out value="${token}"/> &copy;
</c:forTokens>

<h4>使用 '|'和',' 作为分割符</h4>

<c:forTokens var="token" items="blue,red,green|yellow|pink,black|white"
              delims="|,">
  <c:out value="${token}"/> &copy;
</c:forTokens>

<h4>使用 '-' 作为分割符</h4>

<c:forTokens var="token" items="blue--red--green--yellow--pink--black--white"
              delims="--">
  <c:out value="${token}"/> &copy;
</c:forTokens>

</body>
</html>

⌨️ 快捷键说明

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