Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix #9437(fix re.replace wrong behaviour) #17546

Merged
merged 5 commits into from
Jun 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions lib/impure/re.nim
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,18 @@ proc findBounds*(s: string, pattern: Regex,
## `(-1,0)` is returned.
result = findBounds(cstring(s), pattern, matches, start, s.len)

proc findBoundsImpl(buf: cstring, pattern: Regex,
start = 0, bufSize = 0, flags = 0): tuple[first, last: int] =
var rtarray = initRtArray[cint](3)
let rawMatches = rtarray.getRawData
let res = pcre.exec(pattern.h, pattern.e, buf, bufSize.cint, start.cint, flags.int32,
cast[ptr cint](rawMatches), 3)

if res < 0'i32:
result = (-1, 0)
else:
result = (int(rawMatches[0]), int(rawMatches[1]-1))

proc findBounds*(buf: cstring, pattern: Regex,
start = 0, bufSize: int): tuple[first, last: int] =
## returns the `first` and `last` position of `pattern` in `buf`,
Expand Down Expand Up @@ -433,12 +445,16 @@ proc replace*(s: string, sub: Regex, by = ""): string =
doAssert "var1=key; var2=key2".replace(re"(\w+)=(\w+)", "?") == "?; ?"
result = ""
var prev = 0
var flags = int32(0)
while prev < s.len:
var match = findBounds(s, sub, prev)
var match = findBoundsImpl(s.cstring, sub, prev, s.len, flags)
flags = 0
if match.first < 0: break
add(result, substr(s, prev, match.first-1))
add(result, by)
if match.last + 1 == prev: break
if match.first > match.last:
# 0-len match
flags = pcre.NOTEMPTY_ATSTART
prev = match.last + 1
add(result, substr(s, prev))

Expand Down
9 changes: 6 additions & 3 deletions tests/stdlib/tre.nim
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,13 @@ proc testAll() =
accum.add($x)
doAssert(accum == @["a","b","c"])

block:
# bug #9306
block: # bug #9306
doAssert replace("bar", re"^", "foo") == "foobar"
doAssert replace("foo", re"", "-") == "-foo"
doAssert replace("foo", re"$", "bar") == "foobar"


block: # bug #9437
doAssert replace("foo", re"", "-") == "-f-o-o-"
doAssert replace("ooo", re"o", "-") == "---"

testAll()