|
Answer» JSTL Function Tags List :
- fn:contains() : It is used to test if an input string containing the specified SUBSTRING in a program.
- fn:containsIgnoreCase() : It is used to test if an input string contains the specified substring as a case insensitive way.
- fn:endsWith() : It is used to test if an input string ENDS with the specified suffix.
- fn:escapeXml() : It escapes the characters that would be interpreted as XML markup.
- fn:indexOf() : It RETURNS an index within a string of first occurrence of a specified substring.
- fn:trim() : It removes the blank spaces from both the ends of a string.
- fn:startsWith() : It is used for checking WHETHER the given string is started with a particular string value.
- fn:split() : It splits the string into an array of substrings.
- fn:toLowerCase() : It converts all the characters of a string to lower case.
- fn:toUpperCase() : It converts all the characters of a string to upper case.
JSTL Function Tags List :
|