Monthly Archive: November 2013

JSTL fn:split() Function

In this tutorial you will learn about the JSTL fn split function. JSTL split Function returns the array of String after splitting the target string with specified separator. Sometimes it is required to split the …

JSTL fn:replace() Function

In this tutorial you will learn about the JSTL replace function. JSTL Replace function is used to replace the string with another string. This function replaces a string with the other string. It replaces all …

JSTL fn:length() Function

In this tutorial you will learn about the JSTL fn length function. JSTL Length function is used to get the size of a collection or length of a String. length function, however the size() method …

JSTL fn:join() Function

JSTL Join function is used to concatenate the strings contained in an array with the specified string. “fn:join” is a string function of JSP Standard Tag Library(JSTL). This function is used to return string with …

JSTL fn:indexOf() Function

JSTL indexOf function returns the index of specified String in target String. The fn:indexOf() function returns the index within a string of a specified substring. Syntax: The fn:indexOf() function has following syntax: int indexOf(java.lang.String, java.lang.String) …

JSTL fn:escapeXml() Function

In this section we will learn how to use <fn:escapeXml> Tag of JSTL. This tag is used to escape characters that could be interpreted as XML markup. This takes string type as argument and also …

JSTL fn:endsWith() Function

In this tutorial you will learn about the JSTL fn endsWith function. JSTL endsWith Function returns true or false based on condition evaluation. To manipulate the string that ends with a specific characters or string …