我有一个公式如下:
String numofcell="4";
int noc = Integer.parseInt(numofcell);
int num = 4;
pageContext.setAttribute("noc",noc);
pageContext.setAttribute("num",num);
<c:choose>
<c:when test = "${noc eq num}">
<%=noc%>
hiiiiiiiiiiiii
</c:when>
<c:otherwise>
<%=noc%>
HELLLOOOOOOO
</c:otherwise>
</c:choose>
我希望它为完全包含我的关键字的字段返回 True &#34; Perso &#34;
但是,从图像中你可以看到两行都返回True,因为单词&#34; person &#34;还包含&#34; perso &#34;。
任何人都可以就如何在Excel中实现我的目标提供一些建议。