I haven't used RegEx so please excuse me...

I have a string like:

string str = "https://abce/MyTest";

I want to check if the particular string starts with "https://" and ends with "/MyTest".

How can I acheive that?

link|improve this question

Are u sure u want //MyTest? This doesn't seem like a valid url. – Stevo3000 Sep 10 '09 at 11:15
Do you care about case? Can it be mytest? – Kobi Sep 10 '09 at 11:22
feedback

6 Answers

up vote 17 down vote accepted

This regular expression:

^https://.*/MyTest$

will do what you ask.

^ matches the beginning of the string.

https:// will match exactly that.

.* will match any number of characters (the * part) of any kind (the . part). If you want to make sure there is at least one character in the middle, use .+ instead.

/MyTest matches exactly that.

$ matches the end of the string.

To verify the match, use:

Regex.IsMatch(str, @"^https://.*/MyTest$");

More info at the MSDN Regex page.

link|improve this answer
+1 U beat me to it. – Stevo3000 Sep 10 '09 at 11:16
2  
+1 For a nice breakdown of the parts :) – Zhaph - Ben Duguid Sep 10 '09 at 11:20
1  
@Steve3000: Finally! I spent the last three hours being "beaten to it" :) – R. Martinho Fernandes Sep 10 '09 at 11:21
Don't see why this isn't the accepted answer, was first and correct! – Stevo3000 Sep 10 '09 at 11:24
@Stevo: thanks for the support. Actually it is not completely correct. There is an extra slash somewhere. Will fix... – R. Martinho Fernandes Sep 10 '09 at 11:27
show 3 more comments
feedback

Try the following:

var str = "https://abce/MyTest";
var match = Regex.IsMatch(str, "^https://.+/MyTest$");

The ^ identifier matches the start of the string, while the $ identifier matches the end of the string. The .+ bit simply means any sequence of chars (except a null sequence).

You need to import the System.Text.RegularExpressions namespace for this, of course.

link|improve this answer
feedback

I want to check if the particular string starts with "https://" and ends with "/MyTest".

Well, you could use regex for that. But it's clearer (and probably quicker) to just say what you mean:

str.StartsWith("https://") && str.EndsWith("/MyTest")

You then don't have to worry about whether any of the characters in your match strings need escaping in regex. (For this example, they don't.)

link|improve this answer
Yes! Excellent point. – Nicolas Webb Sep 17 '09 at 15:49
feedback

In .NET:

^https://.*/MyTest$
link|improve this answer
feedback

Try Expresso, good for building .NET regexes and teaching you the syntax at the same time.

link|improve this answer
+1 My current regex tool of choice. – Stevo3000 Sep 10 '09 at 12:17
feedback

HAndy tool for genrating regular expressions

http://txt2re.com/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.