src/bookofnim/deepdives/strings

Search:
Group by:
Source   Edit  

strings

bookmark

TLDR

  • generally any proc that accepts a string, also accepts a char, and sometimes setchar
  • if supporting unicode, use the unicode procs to prevent any gotchas
    • e.g. the default .len proc doesnt return the actual number of chars in a unicode string

links

TODOs

strformat

strutils

  • AllChars (and related) useful for creating inverted sets to check for invalid chars in a string
  • % used for index/named replacement
  • stripLineEnd is useful conjunction with osproc.execCmdEx
  • skipped type conversion procs; check skipped for the ones we skipped
  • the split like procs also have an iterator syntax that accepts a block
  • tokenize looks interesting

string formatters

Vars

mutated: string
Source   Edit  

Lets

multiline = "this is a\nmultiline string"
Source   Edit  
multiline2 = """    this is a
    multiline string
  """
Source   Edit  
oneline = "this is a one line string"
Source   Edit  

Procs

proc echoMutated(): void {....raises: [], tags: [], forbids: [].}
Source   Edit