Continue with the previous question,
http://stackoverflow.com/questions/3447131/regular-expression-to-match-relative-urls
we are facing a slight problem with space in the relative Urls. Lets say, we have two scenarios:
/abc/part%20Red/
/abc/part Red/
First relative URl is retrived but second relative URL returned /abc/part instead of /abc/part Red/
We cann't add \s in our allowed character list. If we add \s in the allowed character list, we may get more wrong Urls.