Is there a function already built into VS that will effectively do for me what the Linux 'tr' command does? Basically, I have a file with a lot of character sequences (such as '%20') that I'd like to translate directly to other characters (such as ' ' in the case of '%20'). Ideally I'd like to pass two same sized arrays and say have at it. My current approach is to just keep going back to the top of the file or selection and do search and replace over and over again.
I know I could write this pretty easily, but if it's already there, I'd rather use it.
Thanks,
-Rob