Hello.
I am testing with the “is a match” activity, I read a text and it finds the word, as my variable is “boolean” it shows me TRUE, how can I show the word since I have tried several forms and I do not get it. I have tried with IEnumerable but it gives me the error that I show you, if I select IEnumerable, it tells me that it cannot be converted to boolean.
Any ideas to then go through a loop and get the extracted data?
-
First use Is Match activity to check looking value existing or not in the given input string. It will give True if value exists else False.
-
And then use Matches activity and pass the same input string and it will return all matches and it is of type Enumerable.
1 Like
Here is an example of how I have done it:
In a for each loop with the type argument shown as such
do a for each item in the Match results and assign a variable to capture the results such as this:

Thanks, I have it solved now.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.