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?
|
feedback
|
|
This regular expression:
will do what you ask.
To verify the match, use:
More info at the MSDN Regex page. | |||||||||||||||
feedback
|
|
Try the following:
The You need to import the | ||||
|
feedback
|
Well, you could use regex for that. But it's clearer (and probably quicker) to just say what you mean:
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.) | |||
|
feedback
|
|
Try Expresso, good for building .NET regexes and teaching you the syntax at the same time. | |||
|
feedback
|
|
HAndy tool for genrating regular expressions | |||
|
feedback
|
mytest? – Kobi Sep 10 '09 at 11:22