nre.idx 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. nimTitle nre nre.html module std/nre 0
  2. nim RegexDesc nre.html#RegexDesc object RegexDesc 77
  3. nim Regex nre.html#Regex type Regex 84
  4. nim RegexMatch nre.html#RegexMatch object RegexMatch 156
  5. nim Captures nre.html#Captures type Captures 198
  6. nim CaptureBounds nre.html#CaptureBounds type CaptureBounds 199
  7. nim RegexError nre.html#RegexError type RegexError 201
  8. nim RegexInternalError nre.html#RegexInternalError type RegexInternalError 203
  9. nim InvalidUnicodeError nre.html#InvalidUnicodeError type InvalidUnicodeError 206
  10. nim SyntaxError nre.html#SyntaxError type SyntaxError 210
  11. nim StudyError nre.html#StudyError type StudyError 216
  12. nim captureCount nre.html#captureCount,Regex proc captureCount(pattern: Regex): int 302
  13. nim captureNameId nre.html#captureNameId,Regex proc captureNameId(pattern: Regex): Table[string, int] 305
  14. nim captureBounds nre.html#captureBounds,RegexMatch proc captureBounds(pattern: RegexMatch): CaptureBounds 330
  15. nim captures nre.html#captures,RegexMatch proc captures(pattern: RegexMatch): Captures 332
  16. nim contains nre.html#contains,CaptureBounds,int proc contains(pattern: CaptureBounds; i: int): bool 334
  17. nim contains nre.html#contains,Captures,int proc contains(pattern: Captures; i: int): bool 338
  18. nim `[]` nre.html#[],CaptureBounds,int proc `[]`(pattern: CaptureBounds; i: int): HSlice[int, int] 341
  19. nim `[]` nre.html#[],Captures,int proc `[]`(pattern: Captures; i: int): string 349
  20. nim match nre.html#match,RegexMatch proc match(pattern: RegexMatch): string 355
  21. nim matchBounds nre.html#matchBounds,RegexMatch proc matchBounds(pattern: RegexMatch): HSlice[int, int] 358
  22. nim contains nre.html#contains,CaptureBounds,string proc contains(pattern: CaptureBounds; name: string): bool 361
  23. nim contains nre.html#contains,Captures,string proc contains(pattern: Captures; name: string): bool 368
  24. nim `[]` nre.html#[],CaptureBounds,string proc `[]`(pattern: CaptureBounds; name: string): HSlice[int, int] 375
  25. nim `[]` nre.html#[],Captures,string proc `[]`(pattern: Captures; name: string): string 381
  26. nim toTable nre.html#toTable,Captures proc toTable(pattern: Captures): Table[string, string] 392
  27. nim toTable nre.html#toTable,CaptureBounds proc toTable(pattern: CaptureBounds): Table[string, HSlice[int, int]] 396
  28. nim items nre.html#items.i,CaptureBounds iterator items(pattern: CaptureBounds; default = none(HSlice[int, int])): Option[\n HSlice[int, int]] 411
  29. nim items nre.html#items.i,Captures,Option[string] iterator items(pattern: Captures; default: Option[string] = none(string)): Option[string] 415
  30. nim toSeq nre.html#toSeq,CaptureBounds proc toSeq(pattern: CaptureBounds; default = none(HSlice[int, int])): seq[\n Option[HSlice[int, int]]] 419
  31. nim toSeq nre.html#toSeq,Captures,Option[string] proc toSeq(pattern: Captures; default: Option[string] = none(string)): seq[\n Option[string]] 424
  32. nim `$` nre.html#$,RegexMatch proc `$`(pattern: RegexMatch): string 429
  33. nim `==` nre.html#==,Regex,Regex proc `==`(a, b: Regex): bool 432
  34. nim `==` nre.html#==,RegexMatch,RegexMatch proc `==`(a, b: RegexMatch): bool 440
  35. nim re nre.html#re,string proc re(pattern: string): Regex 499
  36. nim match nre.html#match,string,Regex,int proc match(str: string; pattern: Regex; start = 0; endpos = int.high): Option[\n RegexMatch] 542
  37. nim findIter nre.html#findIter.i,string,Regex,int iterator findIter(str: string; pattern: Regex; start = 0; endpos = int.high): RegexMatch 559
  38. nim find nre.html#find,string,Regex,int proc find(str: string; pattern: Regex; start = 0; endpos = int.high): Option[\n RegexMatch] 610
  39. nim findAll nre.html#findAll,string,Regex,int proc findAll(str: string; pattern: Regex; start = 0; endpos = int.high): seq[string] 623
  40. nim contains nre.html#contains,string,Regex,int proc contains(str: string; pattern: Regex; start = 0; endpos = int.high): bool 628
  41. nim split nre.html#split,string,Regex,int,int proc split(str: string; pattern: Regex; maxSplit = -1; start = 0): seq[string] 639
  42. nim replace nre.html#replace,string,Regex,proc(RegexMatch) proc replace(str: string; pattern: Regex; subproc: proc (match: RegexMatch): string): string 718
  43. nim replace nre.html#replace,string,Regex,proc(string) proc replace(str: string; pattern: Regex; subproc: proc (match: string): string): string 743
  44. nim replace nre.html#replace,string,Regex,string proc replace(str: string; pattern: Regex; sub: string): string 747
  45. nim escapeRe nre.html#escapeRe,string proc escapeRe(str: string): string 752
  46. heading What is NRE? nre.html#what-is-nreqmark What is NRE? 0
  47. heading Licencing nre.html#what-is-nreqmark-licencing Licencing 0
  48. heading Options nre.html#licencing-options Options 0
  49. nimgrp totable nre.html#toTable-procs-all proc 392
  50. nimgrp replace nre.html#replace-procs-all proc 718
  51. nimgrp == nre.html#==-procs-all proc 432
  52. nimgrp contains nre.html#contains-procs-all proc 334
  53. nimgrp [] nre.html#[]-procs-all proc 341
  54. nimgrp toseq nre.html#toSeq-procs-all proc 419
  55. nimgrp match nre.html#match-procs-all proc 355
  56. nimgrp items nre.html#items-iterators-all iterator 411