I want to replace the first occurrence in a given string.
How can I accomplish this in .NET?
|
1
|
|||
|
|
|
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:
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. |
||
|
|
|
|
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; Output : Count is 90 |
||
|
|
|
And because there is also VB.NET to consider, I would like to offer up:
|
|||
|
|
|
C# extension method that will do this:
Enjoy |
||
|
|
|
In C# syntax:
|
||
|
|
|
|
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:
... and use it like this:
|
|||
|
|
|
|
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):
|
|||
|
|
|
Take a look at Regex.Replace. |
||
|
|
|
you'd need to find the first occurrence, remove that substring and replace it with the new string. |
||||
|