<%@ page language="java" contentType="text/html;charset=Windows-31J"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
<html><body>
<c:forEach var="str" items="${ fn:split('aa-bb-cc','-') }" >
${str}<br>
</c:forEach>
</body></html>
|