summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorYanis Zafirópulos <1265028+drkameleon@users.noreply.github.com>2021-05-01 09:37:02 +0200
committerGitHub <noreply@github.com>2021-05-01 09:37:02 +0200
commita55c7e9679e8df0ffc7eaff1e2d5626ec5a9129a (patch)
treeffb5d1afd8cb123d20d22e8e6dfd3cc386540207 /lib
parent9f75e8abc153bafdc5d3a34f001d20a92d36e220 (diff)
downloadNim-a55c7e9679e8df0ffc7eaff1e2d5626ec5a9129a.tar.gz
WIP: Added missing functions to jsre module (#17881)
* added missing functions: `replace`, `replaceAll`, `split`, `match`
* added `startsWith` & `endsWith`
* Update lib/js/jsre.nim

Co-authored-by: Juan Carlos <juancarlospaco@gmail.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/js/jsre.nim30
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/js/jsre.nim b/lib/js/jsre.nim
index 7d51db646..a23fccaa8 100644
--- a/lib/js/jsre.nim
+++ b/lib/js/jsre.nim
@@ -30,6 +30,15 @@ func newRegExp*(pattern: cstring): RegExp {.importjs: "new RegExp(@)".}
 func compile*(self: RegExp; pattern: cstring; flags: cstring) {.importjs: "#.compile(@)".}
   ## Recompiles a regular expression during execution of a script.
 
+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 split*(pattern: cstring; self: RegExp): seq[cstring] {.importjs: "#.split(#)".}
+  ## Divides a string into an ordered list of substrings and returns the array
+
+func match*(pattern: cstring; self: RegExp): seq[cstring] {.importjs: "#.match(#)".}
+  ## Returns an array of matches of a RegExp against given string
+
 func exec*(self: RegExp; pattern: cstring): seq[cstring] {.importjs: "#.exec(#)".}
   ## Executes a search for a match in its string parameter.
 
@@ -51,6 +60,20 @@ func contains*(pattern: cstring; self: RegExp): bool =
     assert "xabc".contains jsregex
   asm "`result` = `self`.test(`pattern`);"
 
+func startsWith*(pattern: cstring; self: RegExp): bool =
+  ## Tests if string starts with given RegExp
+  runnableExamples:
+    let jsregex: RegExp = newRegExp(r"abc", r"i")
+    assert "abcd".startsWith jsregex
+  pattern.contains(newRegExp(("^" & $(self.source)).cstring, self.flags))
+
+func endsWith*(pattern: cstring; self: RegExp): bool =
+  ## Tests if string ends with given RegExp
+  runnableExamples:
+    let jsregex: RegExp = newRegExp(r"bcd", r"i")
+    assert "abcd".endsWith jsregex
+  pattern.contains(newRegExp(($(self.source) & "$").cstring, self.flags))
+
 
 runnableExamples:
   let jsregex: RegExp = newRegExp(r"\s+", r"i")
@@ -61,3 +84,10 @@ runnableExamples:
   jsregex.compile(r"[0-9]", r"i")
   assert "0123456789abcd".contains jsregex
   assert $jsregex == "/[0-9]/i"
+  jsregex.compile(r"abc", r"i")
+  assert "abcd".startsWith jsregex
+  assert "dabc".endsWith jsregex
+  jsregex.compile(r"\d", r"i")
+  assert "do1ne".split(jsregex) == @["do".cstring, "ne".cstring]
+  jsregex.compile(r"[lw]", r"i")
+  assert "hello world".replace(jsregex,"X") == "heXlo world"