【发布时间】:2012-05-26 01:49:53
【问题描述】:
如何在 EL 中检查 equalIgnoreCase?
String a = "hello";
a.equalsIgnoreCase("hello");
现在在 JSP 页面上..
<h:panelGroup rendered="#{patientNotePrescriptionVar.prescriptionSchedule == patientNotePresBackingBean.sendPrescription}">
... Some code here ....
</h:panelGroup>
有什么方法可以将patientNotePresBackingBean.sendPrescription 匹配为equalIgnoreCase?
【问题讨论】: