vote up 8 vote down star
1

I want to replace the first occurrence in a given string.

How can I accomplish this in .NET?

flag
Please make clear posts that people can understand. I edited this one for you too. You should have specified a language at least here. – Rich B Sep 26 '08 at 18:13

9 Answers

vote up 4 vote down

As itsmatt said Regex.Replace is a good choice for this however to make his answer more complete I will fill it in with a code sample:

using System.Text.RegularExpressions;
...
Regex regex = new Regex("foo");
string result = regex.Replace("foo1 foo2 foo3 foo4", "bar", 1);             
// result = "bar1 foo2 foo3 foo4"

The third parameter, set to 1 in this case, is the number of occurrences of the regex pattern that you want to replace in the input string from the beginning of the string.

I was hoping this could be done with a static Regex.Replace overload but unfortunately it appears you need a Regex instance to accomplish it.

link|flag
vote up -1 vote down

There are many ways of doing this operation as given in above answers. But string concetenations are not that efficient. Use string.format, it is more efficient than using +.

int i = 90;
string.Format("Count is {0}", i.ToString());

Output : Count is 90

link|flag
You are clueless... – leppie Sep 30 '08 at 5:59
vote up 1 vote down

And because there is also VB.NET to consider, I would like to offer up:

Private Function ReplaceFirst(ByVal text As String, ByVal search As String, ByVal replace As String) As String
    Dim pos As Integer = text.IndexOf(search)
    If pos >= 0 Then
        Return text.Substring(0, pos) + replace + text.Substring(pos + search.Length)
    End If
    Return text 
End Function
link|flag
Argh, someone, please edit it and indent the code! – Vincent Sep 26 '08 at 19:03
vote up 6 vote down

C# extension method that will do this:

public static class StringExt
{
    public static string ReplaceFirstOccurrence(this string s, string oldValue, string newValue)
    {
         int i = s.IndexOf(oldValue);
         return s.Remove(i, oldValue.Length).Insert(i, newValue);    
    } 
}

Enjoy

link|flag
Thanks! I modified this to make a "RemoveFirst" extension method which... removes the first occurrence of a character from a string. – pbh101 Feb 11 at 1:53
vote up 4 vote down

In C# syntax:

int loc = original.IndexOf(oldValue);
return original.Remove(loc, oldValue.Length).Insert(loc, newValue);
link|flag
vote up 15 vote down
string str = "Hello WorldWorld";

str = ReplaceFirst(str, "World", "StackOverflow ");

...

string ReplaceFirst(string text, string search, string replace)
{
  int pos = text.IndexOf(search);
  if (pos < 0)
  {
    return text;
  }
  return text.Substring(0, pos) + replace + text.Substring(pos + search.Length);
}

EDIT: As @itsmatt mentioned, there's also Regex.Replace(String, String, Int32), which can do the same, but is probably more expensive at runtime, since it's utilizing a full featured parser where my method does one find and three string concatenations.

EDIT2: As this is such a common task you might want to make the method an extension method for all strings:

class MyStringExtensions
{
  string ReplaceFirst(this string text, string search, string replace)
  {
     // ...same as above...
  }
}

... and use it like this:

string str = "Hello WorldWorld";

str = str.ReplaceFirst("World", "StackOverflow ");
link|flag
vote up 1 vote down

Regex.Replace, especially RegEx.Replace(string, string, int), is probably what you're looking for. That or String.IndexOf which will give you the index and then you can cut and rebuild the string with the new text you want.

An example demonstrating the latter (as first demonstrated by @David Humpohl):

string str = "Hello WorldWorld";

str = ReplaceFirst(str, "World", "StackOverflow ");

...

string ReplaceFirst(string text, string search, string replace)
{
    int pos = text.IndexOf(search);
    if (pos >= 0)
    {
        return text.Substring(0, pos) + replace + text.Substring(pos + search.Length);
    }
    return text;
}
link|flag
so you just copied my example. thank you very much. – VVS Sep 26 '08 at 18:35
vote up 7 vote down

Take a look at Regex.Replace.

link|flag
Specifically, Regex.Replace Method (String, String, Int32) will do the trick and is really concise. – itsmatt Sep 26 '08 at 18:32
vote up 0 vote down

you'd need to find the first occurrence, remove that substring and replace it with the new string.

link|flag
That's what he asked: How to do right this with .NET ... ;) – Anheledir Sep 27 '08 at 23:58
HOW to do it is described in short phrases. The exact syntax is dependent on language, and it's subtly different for each one, even in the various .NET languages. Since no language is specified, I explained it in English. – Stephen Wrighton Sep 28 '08 at 2:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.