A tab string is represent by \t
.
So if you want to replace tab by question mark:
url.Replace("\t","?");
Should do the job.
Edit:
Right, as explain by Zaheer Ahmed, you need also to reaffect the result of the Replace function…
3
solved How to replace tabs with?