Viewing profile — vonox
vonox
HN member- Joined
- Tue, Apr 07, 2015, 2:59 PM UTC
- HN karma
- 1
- Public activity
- 3 items
- HN profile
- View on Hacker News ↗
About vonox
No profile information was provided.
Recent public activity
-
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)
-
comment
Comment #19029023
Thanks
-
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:...) `...`