I've a list of possible urls on my site like
1 http://dev.site.com/People/
2 http://dev.site.com/People
3 http://dev.site.com/Groups/
4 http://dev.site.com/Groups
5 http://dev.site.com/
6 http://dev.site.com/[extraword]
I want to be able to match all the urls like 6 and redirect them to
http://dev.site.com/?Shorturl=extraword
but I don't want to redirect the first 5 urls
I tried something like
((.*)(?!People|Groups))\r
but something is wrong.
any help?
thanks
| ||||
feedback
|
|
You should put the check that it isn't
At the moment you're checking that the regular expression isn't followed by Depending on which language/framework you're using, you might also need to use
You should also think about whether you want to match urls that begin with
It checks that a negative match for You might want to make sure you don't match an empty string, so use
And if you want a word without any slashes:
| |||||
feedback
|
|
In your regex, the You need a negative lookahead to exclude People|Groups, and then you need to capture the extra word (and the word needs to have some stuff in it, otherwise we want the match to fail). The crucial piece here is that the negative lookahead does not consume any of the string, so you are able to capture the extra word for subsequent use in the redirect URL you are trying to build. Here's a solution in Perl, but the approach should work for you in C#:
Output:
| ||||
|
feedback
|