7116/how-to-use-not-contains-function-in-string-in-uipath
consider following variable.
strValue = “This is an exam”
I want to condition if “exam” is not contained in this variable then how to condition.
tried below approach but it did not work.
Not strValue.Contains(“exam”)
use the following approach
strValue = “This is Test” var i = strValue.indexOf("Test"); if(i>0){ console.log('Test is present in strValue'); }
Hi Apeksha, You need to change the type ...READ MORE
Get Queue item activity enables you to ...READ MORE
Just use a wildcard in selector. Given ...READ MORE
Use the activity Type Into and in the properties ...READ MORE
The link to renew the community edition ...READ MORE
There are many different approaches and idea ...READ MORE
How to extract data from Multiple path ...READ MORE
you can use the following approach strValue = ...READ MORE
use a wildcard in selector. make sure that ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.