Y
Hacker News
new
|
ask
|
show
|
jobs
by
kaeruct
404 days ago
Using. But also maybe abusing.
1 comments
carlosneves
404 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
link
sbjs
403 days ago
It's English, it just looks like regex. In English, the ? belongs
inside
the parens in this case.
link
/(ab?)using/ matches:
- ausing
- abusing
while /(ab)?using/ matches:
- using
- abusing