Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม

จะตรวจสอบว่าสตริงอินพุตมีสตริงย่อยที่ระบุโดยไม่สนใจกรณีโดยใช้ JSP ได้อย่างไร


fn:containsIgnoreCase() ฟังก์ชันกำหนดว่าสตริงอินพุตมีสตริงย่อยที่ระบุหรือไม่ ในขณะที่ทำการค้นหาจะละเว้นกรณีนี้

ไวยากรณ์

fn:containsIgnoreCase() ฟังก์ชันมีรูปแบบดังนี้ -

boolean containsIgnoreCase(java.lang.String, java.lang.String)

ตัวอย่าง

ต่อไปนี้เป็นตัวอย่างเพื่ออธิบายการทำงานของ fn:containsIgnoreCase() ฟังก์ชัน −

<%@ taglib uri = "https://java.sun.com/jsp/jstl/core" prefix = "c" %>
<%@ taglib uri = "https://java.sun.com/jsp/jstl/functions" prefix = "fn" %>
<html>
   <head>
      <title>Using JSTL Functions</title>
   </head>
   <body>
      <c:set var = "theString" value = "I am a test String"/>
      <c:if test = "${fn:containsIgnoreCase(theString, 'test')}">
         <p>Found test string<p>
      </c:if>
      <c:if test = "${fn:containsIgnoreCase(theString, 'TEST')}">
         <p>Found TEST string<p>
       </c:if>
   </body>
</html>

คุณจะได้รับผลลัพธ์ดังต่อไปนี้ -

Found test string
Found TEST string