Hacker News new | ask | show | jobs
by carlosneves 403 days ago
I think he's proposing a fix for the regex in the title.

/(ab?)using/ matches:

- ausing

- abusing

while /(ab)?using/ matches:

- using

- abusing

1 comments

It's English, it just looks like regex. In English, the ? belongs inside the parens in this case.