top | item 43912895

(no title)

kaeruct | 9 months ago

Using. But also maybe abusing.

discuss

order

carlosneves|9 months 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

sbjs|9 months ago

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