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

2020年11月13日

構文

<:if test="条件式">
    <c:out value="xxx"></cout>
</c:if>

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

使用例

<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