Hi all, I need to replace all system. environment.newline (s) in the string returned by my function with "System.Environment.Newline + \t" (i'm trying to apply indenting) and I need to do this several times . now my question is which one is the fastest way to do this ? I know that stringbuilder is faster than string.replace but I dont know about regex.replace
thanks all