API Docs for: 1.0.0
Show:

jsp.taglib.function Class

JSTLタグライブラリ標準の組み込み関数(<fn:xxx>)のエミューレーションを行う。

Methods

contains

()

fn:contains() 関数のエミュレーションを行う。 Tests if an input string contains the specified substring.

containsIgnoreCase

()

fn:containsIgnoreCase() 関数のエミュレーションを行う。 Tests if an input string contains the specified substring in a case insensitive way.

endsWith

()

fn:endsWith() 関数のエミュレーションを行う。 Tests if an input string ends with the specified suffix.

escapeXml

()

fn:escapeXml() 関数のエミュレーションを行う。 Escapes characters that could be interpreted as XML markup.

indexOf

()

fn:indexOf() 関数のエミュレーションを行う。 Returns the index withing a string of the first occurrence of a specified substring.

join

()

fn:join() 関数のエミュレーションを行う。 Joins all elements of an array into a string.

length

()

fn:length() 関数のエミュレーションを行う。 Returns the number of items in a collection, or the number of characters in a string.

replace

()

fn:replace() 関数のエミュレーションを行う。 Returns a string resulting from replacing in an input string all occurrences of a "before" string into an "after" substring.

split

()

fn:split() 関数のエミュレーションを行う。 Splits a string into an array of substrings.

startsWith

()

fn:startsWith() 関数のエミュレーションを行う。 Tests if an input string starts with the specified prefix.

substring

()

fn:substring() 関数のエミュレーションを行う。 Returns a subset of a string.

substringAfter

()

fn:substringAfter() 関数のエミュレーションを行う。 Returns a subset of a string following a specific substring.

substringBefore

()

fn:substringBefore() 関数のエミュレーションを行う。 Returns a subset of a string before a specific substring.

toLowerCase

()

fn:toLowerCase() 関数のエミュレーションを行う。 Converts all of the characters of a string to lower case.

toUpperCase

()

fn:toUpperCase() 関数のエミュレーションを行う。 Converts all of the characters of a string to upper case.

trim

()

fn:trim() 関数のエミュレーションを行う。 Removes white spaces from both ends of a string.