标签: jstl
我尝试使用条件
<c:when test="${game.duration!='0:00'}"> ...show rows ...
此处的持续时间为String,当String与0:00不匹配时,条件应为true。但这不起作用!当我把
<c:when test="${game.duration=='0:00'}"> ... show rows
行被隐藏,即使持续时间值为5:45。条件实际上是正则表达吗?如何解决这个问题?