如何在 EL 中检查 equalIgnoreCase?
String a = "hello";
a.equalsIgnoreCase("hello");
现在在 JSP 页面上..
<h:panelGroup rendered="#{patientNotePrescriptionVar.prescriptionSchedule == patientNotePresBackingBean.sendPrescription}">
... Some code here ....
</h:panelGroup>
有什么办法可以patientNotePresBackingBean.sendPrescription
匹配为equalIgnoreCase?