I've got a chunk of text in a StringBuilder object. I need to replace one substring with another. The StringBuilder Replace method can do this, but it replaces every instance of the substring and I only want to replace the first found instance. Is there a way to tell StringBuilder to only do one replace?
I'm sure I could code this up myself, I'm just wondering if there is a built in way to achieve this that I am currently missing.