The <fn:join()> is a string function of JSP Standard tag Library(JSTL).This function is used for joining all the elements of an array into a string with a specified operator and returns the output. This function returns string with all the elements of an array separated by a separator. Syntax of <fn:join()> function Example of <fn:join()> …
JSTL Tutorials
JSTL Function fn:indexOf()
The <fn:indexOf()> is a string function of JSTL. This function returns the index within a string of a specified substring. This function is used to get the first occurrence of the substring in the given string. This function takes string type as arguments and returns int type. Syntax of <fn:indexOf()> Tag Example Steps for Execution …
JSTL Function fn:escapeXml()
The <fn:escapeXml()> function is used to escape characters that could be interpreted as XML markup. This is a string function of JSTL. This function also used to replace all characters which have a special meaning in XML. The syntax of<fn:escapeXml()> Tag In this syntax string is of data type “String” it returns a string. Example …
JSTL Function fn:endsWith()
The <fn:endsWith()> function is used for checking the suffix of a string. This function manipulates the string that ends with specific character or string in JSP. Syntax of <fn:endsWith()> Tag In the syntax string and suffix are data type String. It returns the Boolean value. If the input string is tested successfully then the functions …
JSTL Function fn:containsIgnoreCase()
The <fn:containsIgnoreCase()> function is a string function of JSTL. This function is used to check whether the entered string contains the specified substring irrespective of upper case or lower case. This function returns the boolean value. Syntax of Function <fn:containsIgnoreCase()> Example of Function <fn:containsIgnoreCase()> In the above syntax string and substring are of data type …
JSTL Function fn:contains()
The fn: contains() is a string function of JSP Standard Tag Library (JSTL). It is used to specify whether the string contains specified substring or not. If it contains substring, it returns true or else false. Syntax of Function fn: contains() Example Details of the Code <c:out value=”${fn:contains(myjavabeat,java)}”/> tag is used evaluate result of the …
JSTL XML x:param Tag
The tag is subtag of <x:transform> tag. This tag is used with transform tag to set a parameter in the XSLT stylesheet. This tag is used as nested with <x:transform> tag for sending the parameter along with the values. Syntax of xml <x:param> tag Attributes of xml <x:param> tag name : This attribute specifies the …
JSTL XML x:choose ,x:when and x:otherwise Tags
The <x:choose> tag is XML tag used for checking conditional statements. This is similar to java switch statement. In java program we use the case statement but in JSTL we use <c:when< and <x:otherwise< instead of case statement. Syntax of <x:choose> Tag JSTL XML <x:when> Tag This is the subtag of <x:choose> tag. The <x:when> …