if URL contains, then execute









up vote
-1
down vote

favorite












I have the following code:



else if (url == $"Link" + "?rerror=2")

// do something here



The user inputs "Link", then the program navigates to that link. I then want the program to determine if the url contains "?rerror=2" on the end of the url, to do something else.










share|improve this question























  • Have you tried else if (url.Contains("?rerror=2")) or else if (url.EndsWith("?rerror=2"))?
    – Rufus L
    Nov 9 at 21:04











  • thank you, I finally got it! I did else if (driver.Url.Contains("?rerror=2")) and it worked. I apperciate the help!
    – Caden Buckelew
    Nov 9 at 21:29






  • 1




    Possible duplicate of How can I check if a string exists in another string
    – Rufus L
    Nov 9 at 21:45










  • use string.EndsWith(string)
    – Juan Salvador Portugal
    Nov 10 at 2:27














up vote
-1
down vote

favorite












I have the following code:



else if (url == $"Link" + "?rerror=2")

// do something here



The user inputs "Link", then the program navigates to that link. I then want the program to determine if the url contains "?rerror=2" on the end of the url, to do something else.










share|improve this question























  • Have you tried else if (url.Contains("?rerror=2")) or else if (url.EndsWith("?rerror=2"))?
    – Rufus L
    Nov 9 at 21:04











  • thank you, I finally got it! I did else if (driver.Url.Contains("?rerror=2")) and it worked. I apperciate the help!
    – Caden Buckelew
    Nov 9 at 21:29






  • 1




    Possible duplicate of How can I check if a string exists in another string
    – Rufus L
    Nov 9 at 21:45










  • use string.EndsWith(string)
    – Juan Salvador Portugal
    Nov 10 at 2:27












up vote
-1
down vote

favorite









up vote
-1
down vote

favorite











I have the following code:



else if (url == $"Link" + "?rerror=2")

// do something here



The user inputs "Link", then the program navigates to that link. I then want the program to determine if the url contains "?rerror=2" on the end of the url, to do something else.










share|improve this question















I have the following code:



else if (url == $"Link" + "?rerror=2")

// do something here



The user inputs "Link", then the program navigates to that link. I then want the program to determine if the url contains "?rerror=2" on the end of the url, to do something else.







c# url






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 10 at 1:13









Navarasu

1,7801721




1,7801721










asked Nov 9 at 20:56









Caden Buckelew

166




166











  • Have you tried else if (url.Contains("?rerror=2")) or else if (url.EndsWith("?rerror=2"))?
    – Rufus L
    Nov 9 at 21:04











  • thank you, I finally got it! I did else if (driver.Url.Contains("?rerror=2")) and it worked. I apperciate the help!
    – Caden Buckelew
    Nov 9 at 21:29






  • 1




    Possible duplicate of How can I check if a string exists in another string
    – Rufus L
    Nov 9 at 21:45










  • use string.EndsWith(string)
    – Juan Salvador Portugal
    Nov 10 at 2:27
















  • Have you tried else if (url.Contains("?rerror=2")) or else if (url.EndsWith("?rerror=2"))?
    – Rufus L
    Nov 9 at 21:04











  • thank you, I finally got it! I did else if (driver.Url.Contains("?rerror=2")) and it worked. I apperciate the help!
    – Caden Buckelew
    Nov 9 at 21:29






  • 1




    Possible duplicate of How can I check if a string exists in another string
    – Rufus L
    Nov 9 at 21:45










  • use string.EndsWith(string)
    – Juan Salvador Portugal
    Nov 10 at 2:27















Have you tried else if (url.Contains("?rerror=2")) or else if (url.EndsWith("?rerror=2"))?
– Rufus L
Nov 9 at 21:04





Have you tried else if (url.Contains("?rerror=2")) or else if (url.EndsWith("?rerror=2"))?
– Rufus L
Nov 9 at 21:04













thank you, I finally got it! I did else if (driver.Url.Contains("?rerror=2")) and it worked. I apperciate the help!
– Caden Buckelew
Nov 9 at 21:29




thank you, I finally got it! I did else if (driver.Url.Contains("?rerror=2")) and it worked. I apperciate the help!
– Caden Buckelew
Nov 9 at 21:29




1




1




Possible duplicate of How can I check if a string exists in another string
– Rufus L
Nov 9 at 21:45




Possible duplicate of How can I check if a string exists in another string
– Rufus L
Nov 9 at 21:45












use string.EndsWith(string)
– Juan Salvador Portugal
Nov 10 at 2:27




use string.EndsWith(string)
– Juan Salvador Portugal
Nov 10 at 2:27

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53233173%2fif-url-contains-then-execute%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53233173%2fif-url-contains-then-execute%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kleinkühnau

Makov (Slowakei)

Deutsches Schauspielhaus