show/hide this revision's text 3 Fixed error

CString has a Replace() method... (that was my 1st reaction)

I have seen a lot of bad code, and lots worse than this. However, not using built-in functionality when there's no apparent good reason not to is... poor.

Edit: Oh, and apologies if this is stating the obvious, but the code as written won't even work, because the CString isn't passed by reference. So obviously not tested "robustly".

show/hide this revision's text 2 Added comment on correctness

CString has a Replace() method... (that was my 1st reaction)

I have seen a lot of bad code, and lots worse than this. However, not using built-in functionality when there's no apparent good reason not to is... poor.

Edit: Oh, and apologies if this is stating the obvious, but the code as written won't even work, because the CString isn't passed by reference. So obviously not tested "robustly".

show/hide this revision's text 1

CString has a Replace() method... (that was my 1st reaction)

I have seen a lot of bad code, and lots worse than this. However, not using built-in functionality when there's no apparent good reason not to is... poor.