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

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


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

ไวยากรณ์

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

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

ตัวอย่าง

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

<%@ 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 123"/>
      <c:if test = "${fn:endsWith(theString, '123')}">
         <p>String ends with 123<p>
      </c:if>
      <c:if test = "${fn:endsWith(theString, 'TEST')}">
         <p>String ends with TEST<p>
      </c:if>
   </body>
</html>

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

String ends with 123