Package com.singularsys.jep.functions.strings

String functions.

See:
          Description

Class Summary
Concat Concatenates string arguments.
Left Extract the left most n characters from a string: left("abcdefg",2) -> "ab" If n is greater than the length of the string return the full string.
Length Returns the length of a string: len("hello") -> 5
LowerCase Convert a string to lowercase
Mid Extract substring of first argument: mid("abcdefg",2,3) -> "cde" Syntax: mid(str,start,len) Second argument is starting index Third argument is number of characters to return.
Right Extract the left most n characters from a string: right("abcdefg",2) -> "fg".
StringFunctionSet Adds string functions left, right, lower, upper, substring, len, mid, trim.
Substring Extract substring of first argument: substring("abcdefg",2,4) -> "cd".
Trim Trims leading and trailing whitespace
UpperCase Convert a string to uppercase
 

Package com.singularsys.jep.functions.strings Description

String functions.

The string functions can be simply included by using the jep.setComponent(new StringFunctionSet());. This will add the following functions to jep



Copyright © 2010 Singular Systems http://www.singularsys.com/jep