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,554 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,865 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,740 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
966 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,113 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,605 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,336 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,418 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,536 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,600 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,216 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