string str1 = "12345ABC...\\...ABC100000";
// Hypothetically huge string of 100000 + Unicode Chars
str1 = str1.Replace("1", string.Empty);
str1 = str1.Replace("22", string.Empty);
str1 = str1.Replace("656", string.Empty);
str1 = str1.Replace("77ABC", string.Empty);
// ... this replace anti-pattern might happen with upto 50 consecutive lines of code.
str1 = str1.Replace("ABCDEFGHIJD", string.Empty);
I have inherited some code that does the same as the snippet above. It takes a huge string and replaces (removes) constant smaller strings from large string.
I believe this is very memory intensive process given that new large immutable strings are being allocated in memory for each replace, awaitng death via the GC
1. What is the fastest way of replacing these values, ignoring memory concerns?
2. What is the most memory efficient way of achieving the same result?
I am hoping that these are the same answer!
Practical solutions that fit somewhere inbewteen these goals are also appreciated.
Assumptions:
- All replacements are constant and known in advance
- Underlying characters do contain some unicode [non-ascii] chars