mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-12 06:18:51 +00:00
add .replace() with callback to jsre (#21371)
This commit is contained in:
committed by
GitHub
parent
3b9e9fd7b2
commit
03dd853815
@@ -34,6 +34,9 @@ func compile*(self: RegExp; pattern: cstring; flags: cstring) {.importjs: "#.com
|
||||
func replace*(pattern: cstring; self: RegExp; replacement: cstring): cstring {.importjs: "#.replace(#, #)".}
|
||||
## Returns a new string with some or all matches of a pattern replaced by given replacement
|
||||
|
||||
func replace*(pattern: cstring, self: RegExp, cb: proc (args: varargs[cstring]): cstring): cstring {.importcpp.}
|
||||
## Returns a new string with some or all matches of a pattern replaced by given callback function
|
||||
|
||||
func split*(pattern: cstring; self: RegExp): seq[cstring] {.importjs: "(#.split(#) || [])".}
|
||||
## Divides a string into an ordered list of substrings and returns the array
|
||||
|
||||
@@ -88,5 +91,7 @@ runnableExamples:
|
||||
assert "do1ne".split(jsregex) == @["do".cstring, "ne".cstring]
|
||||
jsregex.compile(r"[lw]", r"i")
|
||||
assert "hello world".replace(jsregex,"X") == "heXlo world"
|
||||
jsregex.compile(r"([a-z])\1*", r"g")
|
||||
assert "abbcccdddd".replace(jsregex, proc (m: varargs[cstring]): cstring = ($m[0] & $(m.len)).cstring) == "a1b2c3d4"
|
||||
let digitsRegex: RegExp = newRegExp(r"\d")
|
||||
assert "foo".match(digitsRegex) == @[]
|
||||
|
||||
Reference in New Issue
Block a user