From any URL I want to extract its path.
For example:
URL: https://stackoverflow.com/questions/ask Path: questions/ask
It shouldn't be difficult:
url[/(?:\w{2,}\/).+/]
But I think I use a wrong pattern for 'ignore this' ('?:' - doesn't work). What is the right way?