Skip to content

Commit

Permalink
fixes #9557
Browse files Browse the repository at this point in the history
(cherry picked from commit e653121)
  • Loading branch information
krux02 authored and narimiran committed Nov 1, 2018
1 parent 1a9b954 commit 758c20d
Showing 1 changed file with 34 additions and 32 deletions.
66 changes: 34 additions & 32 deletions lib/pure/strutils.nim
Expand Up @@ -148,8 +148,8 @@ proc isAlphaAscii*(s: string): bool {.noSideEffect, procvar,
## in `s`.
runnableExamples:
doAssert isAlphaAscii("fooBar") == true
doAssert isAlphaAscii("fooBar1") == false
doAssert isAlphaAscii("foo Bar") == false
doAssert isAlphaAscii("fooBar1") == false
doAssert isAlphaAscii("foo Bar") == false
isImpl isAlphaAscii

proc isAlphaNumeric*(s: string): bool {.noSideEffect, procvar,
Expand All @@ -162,7 +162,7 @@ proc isAlphaNumeric*(s: string): bool {.noSideEffect, procvar,
## in `s`.
runnableExamples:
doAssert isAlphaNumeric("fooBar") == true
doAssert isAlphaNumeric("fooBar") == true
doAssert isAlphaNumeric("fooBar") == true
doAssert isAlphaNumeric("foo Bar") == false
isImpl isAlphaNumeric

Expand All @@ -176,7 +176,7 @@ proc isDigit*(s: string): bool {.noSideEffect, procvar,
## in `s`.
runnableExamples:
doAssert isDigit("1908") == true
doAssert isDigit("fooBar1") == false
doAssert isDigit("fooBar1") == false
isImpl isDigit

proc isSpaceAscii*(s: string): bool {.noSideEffect, procvar,
Expand All @@ -187,7 +187,7 @@ proc isSpaceAscii*(s: string): bool {.noSideEffect, procvar,
## characters and there is at least one character in `s`.
runnableExamples:
doAssert isSpaceAscii(" ") == true
doAssert isSpaceAscii("") == false
doAssert isSpaceAscii("") == false
isImpl isSpaceAscii

template isCaseImpl(s, charProc, skipNonAlpha) =
Expand Down Expand Up @@ -412,7 +412,7 @@ proc toOctal*(c: char): string {.noSideEffect, rtl, extern: "nsuToOctal".} =
## The resulting string may not have a leading zero. Its length is always
## exactly 3.
runnableExamples:
doAssert toOctal('!') == "041"
doAssert toOctal('!') == "041"
result = newString(3)
var val = ord(c)
for i in countdown(2, 0):
Expand Down Expand Up @@ -925,7 +925,7 @@ proc intToStr*(x: int, minchars: Positive = 1): string {.noSideEffect,
## achieved by adding leading zeros.
runnableExamples:
doAssert intToStr(1984) == "1984"
doAssert intToStr(1984, 6) == "001984"
doAssert intToStr(1984, 6) == "001984"
result = $abs(x)
for i in 1 .. minchars - len(result):
result = '0' & result
Expand Down Expand Up @@ -1517,6 +1517,8 @@ proc rfind*(s, sub: string, start: int = -1): int {.noSideEffect.} =
## backwards to 0.
##
## Searching is case-sensitive. If `sub` is not in `s`, -1 is returned.
if sub.len == 0:
return -1
let realStart = if start == -1: s.len else: start
for i in countdown(realStart-sub.len, 0):
for j in 0..sub.len-1:
Expand Down Expand Up @@ -1624,11 +1626,7 @@ proc replace*(s, sub: string, by = ""): string {.noSideEffect,
result = ""
let subLen = sub.len
if subLen == 0:
for c in s:
add result, by
add result, c
add result, by
return
result = s
elif subLen == 1:
# when the pattern is a single char, we use a faster
# char-based search that doesn't need a skip table:
Expand Down Expand Up @@ -1683,21 +1681,22 @@ proc replaceWord*(s, sub: string, by = ""): string {.noSideEffect,
initSkipTable(a, sub)
var i = 0
let last = s.high
let sublen = max(sub.len, 1)
while true:
var j = find(a, s, sub, i, last)
if j < 0: break
# word boundary?
if (j == 0 or s[j-1] notin wordChars) and
(j+sub.len >= s.len or s[j+sub.len] notin wordChars):
add result, substr(s, i, j - 1)
add result, by
i = j + sublen
else:
add result, substr(s, i, j)
i = j + 1
# copy the rest:
add result, substr(s, i)
let sublen = sub.len
if sublen > 0:
while true:
var j = find(a, s, sub, i, last)
if j < 0: break
# word boundary?
if (j == 0 or s[j-1] notin wordChars) and
(j+sub.len >= s.len or s[j+sub.len] notin wordChars):
add result, substr(s, i, j - 1)
add result, by
i = j + sublen
else:
add result, substr(s, i, j)
i = j + 1
# copy the rest:
add result, substr(s, i)

proc multiReplace*(s: string, replacements: varargs[(string, string)]): string {.noSideEffect.} =
## Same as replace, but specialized for doing multiple replacements in a single
Expand All @@ -1714,15 +1713,18 @@ proc multiReplace*(s: string, replacements: varargs[(string, string)]): string {
result = newStringOfCap(s.len)
var i = 0
var fastChk: set[char] = {}
for tup in replacements: fastChk.incl(tup[0][0]) # Include first character of all replacements
for sub, by in replacements.items:
if sub.len > 0:
# Include first character of all replacements
fastChk.incl sub[0]
while i < s.len:
block sIteration:
# Assume most chars in s are not candidates for any replacement operation
if s[i] in fastChk:
for tup in replacements:
if s.continuesWith(tup[0], i):
add result, tup[1]
inc(i, tup[0].len)
for sub, by in replacements.items:
if sub.len > 0 and s.continuesWith(sub[0], i):
add result, by
inc(i, sub.len)
break sIteration
# No matching replacement found
# copy current character from s
Expand Down

0 comments on commit 758c20d

Please sign in to comment.