Conditions that compare business terms and values
You can build conditions that compare and manipulate numeric and boolean (true or false) values, dates, business terms, and text strings.
The following sections show how to use the business operators to compare data:
starts withYou can use the text operator
starts withto determine whether a text string starts with a specific sequence of characters:if the customer’s maintenance number starts with “TX” then redirect the call to call center A;
is more thanYou can use the numerical operator
is more thanto compare two numerical values:if the purchase value of the shopping cart is more than $100 then apply a 10% discount to the value of the shopping cart
after <date>andbefore <date>You can use the date and time operators
after <date>andbefore <date>to compare two dates:if the return date of ’rented car’ is after ’pickup date’ and before ’scheduled return date’ then...