how can I remove the protocol from URI? i.e. remove HTTP
|
|
You can use this the
This wil give you stackoverflow.com/search?q=something Edit: this also works for about:blank :-) |
|||||
|
|
In the general sense (not limiting to http/https), an (absolute) uri is always a scheme followed by a colon, followed by scheme-specific data. So the only safe thing to do is cut at the scheme:
In the case of http and a few others you may also want to |
|||
|
You could use the RegEx for this. The below sample would meet your need.
Let me know if this helps |
|||||||
|
|
It's not the most beautiful way, but try something like this: var uri = new Uri("http://xxx"); var scheme = uri.Scheme; var result = uri.ToString().SubString(scheme.Length + 3); |
|||
|
|