vote up 2 vote down star
1

It seems the .NET Regex.Replace method automatically replaces all matching occurrences. I could provide a MatchEvaluator delegate that returns the matched string after the first replacement, rendering no change, but that sounds very inefficient to me.

What is the most efficient way to stop after the first replacement?

flag

67% accept rate

3 Answers

vote up 7 vote down check

From MSDN:

Replace(String, String, Int32)

Within a specified input string, replaces a specified maximum number of strings that match a regular expression pattern with a specified replacement string.

Isn't this what you want?

link|flag
Wow, how did I miss that? Thanks for the tip. – spoulson Sep 29 '08 at 12:55
vote up 2 vote down

Just to answer the original question... The following regex matches only the first instance of the word foo:

(?<!foo.*)foo

This regex uses the negative lookbehind (?<!) to ensure no instance of foo is found prior to the one being matched.

link|flag
vote up 0 vote down

There's a related, essentially duplicate question here.

I do agree with bzlm, though - that's the answer.

link|flag

Your Answer

Get an OpenID
or

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