Live data from Hacker News

Viewing profile — vonox

vonox

HN member
Joined
Tue, Apr 07, 2015, 2:59 PM UTC
HN karma
1
Public activity
3 items

About vonox

No profile information was provided.

Recent public activity

  1. comment
    Comment #19029033

    I also use an alternative regex syntax to improve readability. For example: re ("abc" | ["0"-"9"]+) means this: /abc|[0-9]+/ (You can put whitespaceses into the literal)

  2. comment
  3. story
    Best syntax for a regex literal

    I am working on a programming language. What is the best syntax for regular expression literal? `(...) re (...) $(...) @(...) /.../ (re:...) `...`