This is what I have so far:
string s = @"http://www.s3.locabal.com/whatever/bucket/folder/guid";
string p = @".*//(.*)";
var m = Regex.Match(s, p);
However, this returns "www.s3.locabal.com/whatever/bucket/folder/guid".
|
Although Uri.Segments is probably the best way to do it, here are some alternatives:
|
|||
|
|
|
Use the
|
|||||||||
|
|
You could use this expression:
This will select the value without the preceding slash. |
||||
|
|
guid? – Mike Christensen Nov 13 '12 at 22:28