jsre.idx 1.5 KB

123456789101112131415161718
  1. nimTitle jsre jsre.html module std/jsre 0
  2. nim RegExp jsre.html#RegExp type RegExp 6
  3. nim newRegExp jsre.html#newRegExp,cstring,cstring proc newRegExp(pattern: cstring; flags: cstring): RegExp 26
  4. nim newRegExp jsre.html#newRegExp,cstring proc newRegExp(pattern: cstring): RegExp 29
  5. nim compile jsre.html#compile,RegExp,cstring,cstring proc compile(self: RegExp; pattern: cstring; flags: cstring) 31
  6. nim replace jsre.html#replace,cstring,RegExp,cstring proc replace(pattern: cstring; self: RegExp; replacement: cstring): cstring 34
  7. nim replace jsre.html#replace,cstring,RegExp,proc(varargs[cstring]) proc replace(pattern: cstring; self: RegExp;\n cb: proc (args: varargs[cstring]): cstring): cstring 37
  8. nim split jsre.html#split,cstring,RegExp proc split(pattern: cstring; self: RegExp): seq[cstring] 40
  9. nim match jsre.html#match,cstring,RegExp proc match(pattern: cstring; self: RegExp): seq[cstring] 43
  10. nim exec jsre.html#exec,RegExp,cstring proc exec(self: RegExp; pattern: cstring): seq[cstring] 46
  11. nim toCstring jsre.html#toCstring,RegExp proc toCstring(self: RegExp): cstring 49
  12. nim `$` jsre.html#$,RegExp proc `$`(self: RegExp): string 52
  13. nim contains jsre.html#contains,cstring,RegExp proc contains(pattern: cstring; self: RegExp): bool 54
  14. nim startsWith jsre.html#startsWith,cstring,RegExp proc startsWith(pattern: cstring; self: RegExp): bool 63
  15. nim endsWith jsre.html#endsWith,cstring,RegExp proc endsWith(pattern: cstring; self: RegExp): bool 70
  16. nimgrp replace jsre.html#replace-procs-all proc 34
  17. nimgrp newregexp jsre.html#newRegExp-procs-all proc 26