public class SubstringBeforeFunction extends Object implements Function
4.2 string substring-before(string,string)
The substring-before function returns the substring of the first argument string that precedes the first occurrence of the second argument string in the first argument string, or the empty string if the first argument string does not contain the second argument string. For example, substring-before("1999/04/01","/") returns 1999.
| Constructor and Description |
|---|
SubstringBeforeFunction()
Create a new
SubstringBeforeFunction object. |
| Modifier and Type | Method and Description |
|---|---|
Object |
call(Context context,
List args)
Returns the part of the string-value of the first item in
args
that comes before the string-value of the second item in args;
or the empty string if the second string is not a substring of the first string. |
static String |
evaluate(Object strArg,
Object matchArg,
Navigator nav)
Returns the part of
strArg that precedes the first occurence
of matchArg; or the empty string if the
strArg does not contain matchArg |
public SubstringBeforeFunction()
SubstringBeforeFunction object.public Object call(Context context, List args) throws FunctionCallException
args
that comes before the string-value of the second item in args;
or the empty string if the second string is not a substring of the first string.call in interface Functioncontext - the context at the point in the
expression when the function is calledargs - a list that contains two itemsString containing that
part of the string-value of the first item in args
that comes before the string-value of the second item in argsFunctionCallException - if args does not have length twopublic static String evaluate(Object strArg, Object matchArg, Navigator nav)
strArg that precedes the first occurence
of matchArg; or the empty string if the
strArg does not contain matchArgstrArg - the string from which the substring is extractedmatchArg - the string that marks the boundary of the substringnav - the Navigator used to calculate the string-values of
the first two argumentsString containing the part of strArg that precedes the first occurence
of matchArgCopyright © 2001-2012 Codehaus. All Rights Reserved.