Best syntax for a regex literal
I am working on a programming language.
What is the best syntax for regular expression literal?
`(...)
re (...)
$(...)
@(...)
<...>
/.../
(re:...)
`...`
What is the best syntax for regular expression literal?
`(...)
re (...)
$(...)
@(...)
<...>
/.../
(re:...)
`...`
4 comments
[ 1.7 ms ] story [ 27.3 ms ] threadall look ugly. I would either use a triple distinct character set like python with """^[AEIOU]{1}.+[aeiou]{1}$""" or ~~~^[AEIOU]{1}.+[aeiou]{1}$~~~ but for simplicity you should use the re(...) one because you can intuitively know where the wrapper starts and ends.
re ("abc" | ["0"-"9"]+)
means this:
/abc|[0-9]+/
(You can put whitespaceses into the literal)
When reinventing the wheel, it's hard to top what other do already pretty well. Also, be warned people have to learn your syntax and this will probably stop them using it.