Operators
Contains
Determines whether the String ValueA contains the String ValueB.
Syntax
Contains ( ValueA , ValueB )
Parameters
ValueA The String examined. Type: String
ValueB The pattern which is used to examine. Type: String
Return Type
Boolean
EndsWith
Determines whether String ValueA ends with String ValueB.
Syntax
EndsWith ( ValueA , ValueB )
Parameters
ValueA String which is matched against. Type: String
ValueB Pattern which is matched with. Type: String
Return Type
Boolean
EqualsTo
Takes two values ValueA and ValueB as input, compares them for equality and returns a Boolean.
Syntax
EqualsTo ( ValueA , ValueB )
Parameters
ValueA First part of the equation. Type: Any
ValueB Second part of the equation. Type: Any
Return Type
Boolean
IsBigger
Takes ValueA and ValueB as input and determines whether ValueA is bigger than ValueB.
Syntax
IsBigger ( ValueA , ValueB )
Parameters
ValueA First part of the comparison. Type: Any
ValueB Second part of the comparison. Type: Any
Return Type
Boolean
IsBiggerEqualsTo
Takes ValueA and ValueB as input and determines whether ValueA is bigger than or equal to ValueB.
Syntax
IsBiggerEqualsTo ( ValueA , ValueB )
Parameters
ValueA First part of the comparison. Type: Any
ValueB Second part of the comparison. Type: Any
Return Type
Boolean
IsEmpty
Determines whether the given Value it is empty or not.
Syntax
IsEmpty ( Value )
Parameters
Value Value which will be evaluated. Type: String
Return Type
Boolean
IsInList
Determines whether the given Value is in the given List.
Syntax
IsInList ( List , Value )
Parameters
List The List to check. Type: List<Any>
Value The Value to check for. Type: Any
Return Type
Boolean
IsMatch
Determines whether a certain pattern is found in a String. The pattern can be defined using regular expressions.
Syntax
IsMatch ( Value , Pattern )
Parameters
Value String which will be evaluated. Type: String
Pattern Regular Expression which will be used for evaluation. Type: String
Return Type
Boolean
IsNull
Determines whether the given Value is null.
Syntax
IsNull ( Value )
Parameters
Value Value which will be evaluated. Type: Any
Return Type
Boolean
IsNullOrEmpty
Determines whether the given Value is null or empty.
Syntax
IsNullOrEmpty ( Value )
Parameters
Value Value which will be evaluated. Type: String
Return Type
Boolean
IsNullOrWhiteSpace
Determines whether the given Value is null or consists only of white space.
Syntax
IsNullOrWhiteSpace ( Value )
Parameters
Value Value which will be evaluated. Type: String
Return Type
Boolean
IsSmaller
Takes ValueA and ValueB as input and determines whether ValueA is smaller than ValueB.
Syntax
IsSmaller ( ValueA , ValueB )
Parameters
ValueA First part of the comparison. Type: Any
ValueB Second part of the comparison. Type: Any
Return Type
Boolean
IsSmallerEqualsTo
Takes ValueA and ValueB as input and determines whether ValueA is smaller than or equal to ValueB.
Syntax
IsSmallerEqualsTo ( ValueA , ValueB )
Parameters
ValueA First part of the comparison. Type: Any
ValueB Second part of the comparison. Type: Any
Return Type
Boolean
StartsWith
Determines whether String valueA starts with String ValueB.
Syntax
StartsWith ( ValueA , ValueB )
Parameters
ValueA String which is matched against. Type: Any
ValueB Pattern which is matched with. Type: Any
Return Type
Boolean
Last updated
Was this helpful?