How to find particular string in extracted data

which string action is using to find in particular data , whether the particular string is there are not.
or any activity is there.

@meeraa

You can check below condition in IF activity.

           strInput.Contains("required string")

Here strInput holds your input value. If particular string exists in the given input then it will return True else False.

1 Like

Hello @meeraa ,

If extracted data is in string format, you could use ExtractedDataVariable.Contains(StringToSearch)

If it is a datatable, convert that to string format using output datatable activity and use the above formula.

Thanks!
Athira

1 Like

@meeraa If you want the activity to use then there is something called Is Equal activity to check the string contains or not

Capture

For this you have to install Workflow Manager Activities

Sample Workflow below

Example.zip (2.4 KB)

1 Like

@meeraa May I know are you facing any issues with this

1 Like

@meeraa There is also something called Is Match activity to check specific string present or not. Find attached workflow below for ref

Capture

Example.zip (2.4 KB)

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.