Ignore changed data

Hello everyone,

The data I marked is constantly changing. Is there a situation where I can ignore this data? For example, we put * in Selector and run it for all values. Is it possible to do such a thing?

Thanks!

Hi @MrKezay,

There are different ways to achieve this.

1 way I can think of right away is using Contains() function instead of Equals().

In contains function, mention just the static part which you want to verify and leave the rest(dynamic) part.

This should work.

Regards
Sonali

1 Like

Hi @MrKezay ,

Use contains instead of using equals like below
CurrentRow("Adjusted words").ToString().Contains("You have reached the maximum number of available jobs section refreshes per hour.The next refresh will be possible in")

Regards,
Arivu

1 Like

Thank you @sonaliaggarwal47 and @arivu96

Hey!

Another good option if you don’t want to or cannot use String.Contains is using the LIKE operator! In such statements wildcards are allowed.

Best Regards

1 Like

Thank you @lukasziebold ,
It had never occurred to me to use the Like operator.

1 Like

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