Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 47661e7

Browse files
committedJan 2, 2017
Auto merge of #315 - utkarshkukreti:issue-314, r=BurntSushi
Fix replace_all when only match is at start and replacement is empty. Fixes #314. All old tests and the new test I added pass, and I also confirmed manually that the test case reported in #314 passes with this change. Let me know if you can think of any case that my change doesn't handle!
2 parents 52fdae7 + a9f9c9c commit 47661e7

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed
 

‎src/re_bytes.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ impl Regex {
493493
new.extend_from_slice(&rep);
494494
last_match = m.end();
495495
}
496-
if new.is_empty() {
496+
if last_match == 0 {
497497
return Cow::Borrowed(text);
498498
}
499499
new.extend_from_slice(&text[last_match..]);

‎src/re_unicode.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ impl Regex {
569569
new.push_str(&rep);
570570
last_match = m.end();
571571
}
572-
if new.is_empty() {
572+
if last_match == 0 {
573573
return Cow::Borrowed(text);
574574
}
575575
new.push_str(&text[last_match..]);

‎tests/replace.rs

+3
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,6 @@ replace!(no_expand1, replace,
3333
r"(\S+)\s+(\S+)", "w1 w2", no_expand!("$2 $1"), "$2 $1");
3434
replace!(no_expand2, replace,
3535
r"(\S+)\s+(\S+)", "w1 w2", no_expand!("$$1"), "$$1");
36+
37+
// See https://github.com/rust-lang/regex/issues/314
38+
replace!(match_at_start_replace_with_empty, replace_all, r"foo", "foobar", t!(""), "bar");

0 commit comments

Comments
 (0)
Please sign in to comment.