December 2012
Intermediate to advanced
316 pages
6h 51m
English
In this recipe, we will write a simple program that will function as an if statement. A simple find regex statement will be used.
We will first write an if statement that will check if the value of a parameter variable field1 has the value equal to ABC, DEF, or CDE. In case the value is equal to any of the three, the message Field Value is Valid is displayed. We will then see the equivalent regex.

For replacing the if statement with find regex statement, proceed as follows:
if statement, we will write a find regex statement along with the regex '[ABC|CDE|DEF]'.Read now
Unlock full access