「JSTL入門」c:ifタグとc:outタグを使うサンプル

2020年11月13日

構文

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<:if test="条件式">
<c:out value="xxx"></cout>
</c:if>
<:if test="条件式"> <c:out value="xxx"></cout> </c:if>
<:if test="条件式">
    <c:out value="xxx"></cout>
</c:if>

fn:substring関数
結果文字列 = fn:substring( 対象文字列 , 開始位置 , 終了位置 )

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<c;if test="${useData.username.length() >=8 }">
<c:out value="${fn:substring(userData.username,0,6)}"></c:out>
</c:if>
※userDataはクラスのオブジェクト変数名
<c;if test="${useData.username.length() >=8 }"> <c:out value="${fn:substring(userData.username,0,6)}"></c:out> </c:if> ※userDataはクラスのオブジェクト変数名
<c;if test="${useData.username.length() >=8 }">
  <c:out value="${fn:substring(userData.username,0,6)}"></c:out>
</c:if>
※userDataはクラスのオブジェクト変数名

 

JSTL

Posted by arkgame