I\'m having a issue trying to figure out this. I need to \"fix\" some links, here is an example:
string s = @"www.site.com/link/index.php?REMOVETHISHERE"; s = s.Remove( s.LastIndexOf('?') ); //Now s will be simply "www.site.com/link/index.php"
should do it