JSTL fn:startsWith() function

The JSTL fn:startsWith() function is used to check whether the input string is starts with the specified string or not. It returns true if input string is starts with the specified string otherwise return false.

Syntax:

boolean startsWith(String inputString, String specifiedString)

Example:

test.jsp

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
 
<html>
	<head>
		<title>fn:startsWith JSTL function example</title>
	</head>
	<body>
		<c:set var="testString" 
                   value="Hello this is a JSTL function example."/>
 
		<c:if test="${fn:startsWith(testString, 'Hello')}">
		   <h4>String starts with Hello.</h4>
		</c:if>
	</body>
</html>

web.xml

<web-app>
 
  <welcome-file-list>
          <welcome-file>test.jsp</welcome-file>
  </welcome-file-list>	
 
</web-app>

Output:

jsp example 54   Download this example.   Next Topic: JSTL fn:endsWith() function with example. Previous Topic: JSTL fn:containsIgnoreCase() function with example.

 

Please follow and like us:
Content Protection by DMCA.com