Validate Text in a DataTable

I have DataTable which is containing certain values for which I want to do a check whether the value is matching a regular expression or not? Is there any activity which can validate if my value is matching the regular expression which is inside a DataTable?

Hi @mrunalini

For thi srequirement you’ll have to make use of multiple activities.
One single activity can not help you to achieve this requirement.

You’ll have to first read the data of DataTable using Advanced Loop Activity for DataTable. Then within the Advanced Loop you’ll have to get the value of the desired column.

Once you store that value in one of the argument then you can use RegexValidator activity.
You can refer these links for further understanding.
Advanced Loop
Regex Validator

1 Like