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

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


fn:contains() ฟังก์ชันกำหนดว่าสตริงอินพุตมีสตริงย่อยที่ระบุหรือไม่

ไวยากรณ์

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

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

ตัวอย่าง

ตัวอย่างต่อไปนี้จะอธิบายการทำงานของ fn:contains() ฟังก์ชัน −

<%@ 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:contains(theString, 'test')}">
         <p>Found test string<p>
      </c:if>
      <c:if test = "${fn:contains(theString, 'TEST')}">
         <p>Found TEST string<p>
      </c:if>
   </body>
</html>

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

Found test string