How to use Not contains function in string in UIPath

0 votes

I have following variable.

strValue = “This is an exam”

I want to condition if “exam” is not contains in this variable then how to condition.

I have tried below approach but it did not work.

Not strValue.Contains(“exam”)
May 16, 2018 in RPA by Vardy
• 2,360 points
4,556 views

1 answer to this question.

0 votes

you can use the following approach 

strValue = “This is Test”
var i = strValue.indexOf("Test");
if(i>0){
  console.log('Test is present in strValue');
}
answered May 16, 2018 by wrecker
• 3,110 points

Related Questions In RPA

0 votes
1 answer

How to use Switch activity on a string in UiPath?

Hi Apeksha, You need to change the type ...READ MORE

answered Nov 8, 2019 in RPA by Abha
• 28,140 points
7,885 views
0 votes
1 answer

How to use Get queue item activity and how to use ienumerable string in uipath.

Get Queue item activity enables you to ...READ MORE

answered Apr 24, 2020 in RPA by Sirajul
• 59,230 points
4,751 views
0 votes
1 answer

How to select an item in UiPath that starts with a string

Just use a wildcard in selector. Given ...READ MORE

answered May 28, 2018 in RPA by wrecker
• 3,110 points
969 views
0 votes
1 answer

How to select an item in UiPath that starts with a string?

Just use a wildcard in selector. Given ...READ MORE

answered Jun 30, 2018 in RPA by wrecker
• 3,110 points
1,114 views
0 votes
1 answer

Robot Manager in UiPath

the robot.exe file is located in: C:\Users\USER_ACCOUNT\AppData\Local\UiPath\app-17.1.6523\Ui-Robot.exe Hope it ...READ MORE

answered Apr 17, 2018 in RPA by wrecker
• 3,110 points
1,611 views
0 votes
1 answer

Automation in Uipath

you can use the Database package for connecting  ...READ MORE

answered Apr 17, 2018 in RPA by wrecker
• 3,110 points
1,344 views
0 votes
1 answer

UiPath vs Workfusion

in WorkFusion, you can create a script ...READ MORE

answered Apr 17, 2018 in RPA by wrecker
• 3,110 points
2,427 views
0 votes
3 answers

Any open source tools for RPA ?

Yes, here is the Free RPA tool ...READ MORE

answered Oct 24, 2018 in RPA by Karthiksiddhu
• 240 points
1,541 views
0 votes
1 answer

How to use Not contains function in string in UIPath?

use the following approach  strValue = “This is ...READ MORE

answered Jun 19, 2018 in RPA by wrecker
• 3,110 points
1,601 views
0 votes
1 answer

How to select an item in UiPath that starts with a string

use a wildcard in selector. make sure that ...READ MORE

answered May 21, 2018 in RPA by wrecker
• 3,110 points
3,222 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP