Y
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
sbjs
403 days ago
It's English, it just looks like regex. In English, the ? belongs
inside
the parens in this case.
link