How can I do a replace on a string so that "(" becomes ")" and ")" becomes "("?
|
It would be tempting to use
I'm aware you could put something in there as a placeholder to swap against, but if it already existed in your string, you'd have a big problem. Consider using "xxx" as your swap string. If your string was "abcx(yz)", and you replace ( with xxx, you end up with "abcxxxyz)" Then you replace ) with ( so you have "abcxxxxyz(". Then you replace xxx with ) so you have "abc)xyz(". Certainly not cool! |
|||||||||||||||
|
|
How about
where |
|||||
|
|
||||
|
|
|
You can first replace
If you already have a null character in the string, though, that won't work, so it's not a good general solution. Otherwise you can use glowcoder's approach, but what might be more efficient is getting the bytes into an array and replacing them yourself, then re-building the string:
|
||||
|
|
|
If there is a character you would never ever find in the string of text, you can use |
|||
|
|