Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)LE
Posts 0
Comments 4
Like programming in bash
  • This is exactly it. Regex is super simple. The difficulty is maintaining a mental mapping between language/util <-> regex engine <-> engine syntax & character class names. It gets worse when utils also conditionally enable extended syntaxes with flags or options.

    The hardest part is remembering whether you need to use \w or [:alnum:].

    Way too few utils actually mention which syntax they use too. Most just say something accepts a "regular expression", which is totally ambiguous.

  • Like programming in bash
  • This is exactly it. Regex is super simple. The difficulty is maintaining a mental mapping between language/util <-> regex engine <-> engine syntax & character class names. It gets worse when utils also conditionally enable extended syntaxes with flags or options.

    The hardest part is remembering whether you need to use \w or [:alnum:].

    Way too few utils actually mention which syntax they use too. Most just say something accepts a "regular expression", which is totally ambiguous.

  • Like programming in bash
  • This is exactly it. Regex is super simple. The difficulty is maintaining a mental mapping between language/util <-> regex engine <-> engine syntax & character class names. It gets worse when utils also conditionally enable extended syntaxes with flags or options.

    The hardest part is remembering whether you need to use \w or [:alnum:].

    Way too few utils actually mention which syntax they use too. Most just say something accepts a "regular expression", which is totally ambiguous.

  • Like programming in bash
  • This is exactly it. Regex is super simple. The difficulty is maintaining a mental mapping between language/util <-> regex engine <-> engine syntax & character class names. It gets worse when utils also conditionally enable extended syntaxes with flags or options.

    The hardest part is remembering whether you need to use \w or [:alnum:].

    Way too few utils actually mention which syntax they use too. Most just say something accepts a "regular expression", which is totally ambiguous.