top | item 43290938

(no title)

loginx | 1 year ago

One thing I always appreciated about CoffeeScript was its [heregex syntax](https://coffeescript-cookbook.github.io/chapters/regular_exp...), which made regexes clear and easy to document.

Many CoffeeScript constructs were adopted into JavaScript and TypeScript, but unfortunately, heregexes weren't among them.

discuss

order

yesbabyyes|1 year ago

I agree. I'm pretty sure jashkenas got it from Ruby, which got it from Perl, with the `/x` flag (for extended regular expressions).

Later languages have added support for the `x` flag, including C# and Rust. There is also a stage 1 proposal for JavaScript: https://github.com/tc39/proposal-regexp-x-mode

loginx|1 year ago

Nice roundup, and thanks for sharing that proposal!

genewitch|11 months ago

Notepad++ has /x mode as well.

I probably use regexes the most in notepad++