public class JSTLFunctions extends Object
| Constructor and Description |
|---|
JSTLFunctions() |
| Modifier and Type | Method and Description |
|---|---|
static String |
replaceAll(String string,
String regex,
String replacement)
JSTL delegate for
String.replaceAll(String, String). |
static String[] |
split(String string,
String regex)
JSTL delegate for
String.split(String). |
public static String replaceAll(String string, String regex, String replacement)
String.replaceAll(String, String). The first argument is the value on which the
replacement has to occur. The other arguments are passed to String.replaceAll(String, String) directly.String.replaceAll(String, String)public static String[] split(String string, String regex)
String.split(String). The first argument is the value on which the replacement has to
occur. The other argument is used as the argument for the invocation of String.split(String).String.split(String)Copyright © 2003-2008 Jive Software.