show/hide this revision's text 3 tokens is a list of about one thousand strings, each 5 to 15 characters in length.

I'm trying to obfuscate a large amount of data. I've created a list of words (tokens) which I want to replace and I am replacing the words one by one using the StringBuilder class, like so:

 var sb = new StringBuilder(one_MB_string);
 foreach(var token in tokens)
 {
   sb.Replace(token, "new string");
 }

It's pretty slow! Are there any simple things that I can do to speed it up?

tokens is a list of about one thousand strings, each 5 to 15 characters in length.

show/hide this revision's text 2 replaced da.GetObfuscatedString(token) with const for clarity

I'm trying to obfuscate a large amount of data. I've created a list of words (tokens) which I want to replace and I am replacing the words one by one using the StringBuilder class, like so:

 var sb = new StringBuilder(one_MB_string);
 foreach(var token in tokens)
 {
   sb.Replace(token, da.GetObfuscatedString(token))"new string");
 }

It's pretty slow! Are there any simple things that I can do to speed it up?

show/hide this revision's text 1

A better way to replace many strings - obfuscation in C#

I'm trying to obfuscate a large amount of data. I've created a list of words (tokens) which I want to replace and I am replacing the words one by one using the StringBuilder class, like so:

 var sb = new StringBuilder(one_MB_string);
 foreach(var token in tokens)
 {
   sb.Replace(token, da.GetObfuscatedString(token));
 }

It's pretty slow! Are there any simple things that I can do to speed it up?