How to use Not contains function in string in UIPath

0 votes

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”)
Jun 19, 2018 in RPA by ffdfd
• 5,550 points
1,600 views

1 answer to this question.

0 votes

use the following approach 

strValue = “This is Test”
var i = strValue.indexOf("Test");
if(i>0){
  console.log('Test is present in strValue');
}
answered Jun 19, 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,869 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,741 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

Clear a text box in uipath?

Use the activity Type Into and in the properties ...READ MORE

answered May 14, 2018 in RPA by wrecker
• 3,110 points
2,844 views
0 votes
1 answer

UiPath community edition

The link to renew the community edition ...READ MORE

answered May 30, 2018 in RPA by wrecker
• 3,110 points
2,392 views
0 votes
1 answer

Uipath string null

There are many different approaches and idea ...READ MORE

answered Jun 1, 2018 in RPA by wrecker
• 3,110 points
3,609 views
0 votes
0 answers

How to extract data from Multiple path alias for a url

How to extract data from Multiple path ...READ MORE

Jun 21, 2019 in RPA by Nipun
707 views
0 votes
1 answer

How to use Not contains function in string in UIPath?

you can use the following approach  strValue = ...READ MORE

answered May 16, 2018 in RPA by wrecker
• 3,110 points
4,555 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