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