Monthly Archive: November 2013

JSTL fn:trim() Function

JSTL Trim function is used to remove white space from the start and end of the String. The fn:trim() function removes white space from both ends of a string. Syntax: The fn:trim() function has following …

JSTL fn:toUpperCase() Function

The fn:toUpperCase() function converts all the characters of a string to uppercase. JSTL toLowerCase Function returns String that contains all characters in lower case. Syntax: The fn:toUpperCase() function has following syntax: java.lang.String toLowerCase(java.lang.String) Example: Following …

JSTL fn:toLowerCase() Function

JSTL toLowerCase Function returns String that contains all characters in lower case. The fn:toLowerCase() function converts all the characters of a string to lowercase. Syntax: The fn:toLowerCase() function has following syntax: java.lang.String toLowerCase(java.lang.String) Example: Following …

JSTL fn:substringBefore() Function

JSTL SubstringBefore function is used to get the substring of target string. This function takes 2 parameters. First parameter in JSTL SubstringBefore function is the target String from which you want to derive the substring. …

JSTL fn:substringAfter() Function

The fn:substringAfter() function returns the part of a string after a specified substring. JSTL SubstringAfter function is used to get the substring of target string. This function takes 2 parameters. First parameter in JSTL SubstringAfter …

JSTL fn:substring() Function

JSTL Substring function is used to get the substring of target string. This function takes 3 parameters. First parameter in JSTL Substring function is the target String from which you want to derive the substring. …

JSTL fn:startsWith() Function

JSTL startsWith Function returns true or false based on condition evaluation. The fn:startsWith() function determines whether an input string starts with a specified substring. Syntax: The fn:startsWith() function has following syntax: boolean startsWith(java.lang.String, java.lang.String) JST …