I trying to find the syntax where I can use Not keyword with String.Contains condition in UIPath.
Example: I have the following variable.
strValue = “This is Test”
I want to check whether the 'Test' word does not exist in the variable then it should show me some message.
I have tried the below approach but it did not work.
Not strValue.Contains(“Test”)