el - Break method in JSTL -


does jstl suuports break method?i search on web , didn't found answer.is possible tou this:

<c:if test="${fn:contains(data, 'apple')}"> <break> </c:if> 

jstl not support break statment or tag, unless until version 1.1. can see list of tags , functions in doc page.

you have play boolean variable in test condition archive similar behaviour.


Comments

Popular posts from this blog

JQuery Autocomplete without using label, value, id -

c++ - Accessing inactive union member and undefined behavior? -

JAVA - what is the difference between void and boolean methods? -