Y
Hacker News
new
|
ask
|
show
|
jobs
by
cognisent
110 days ago
One thing I don't understand is what does _* mean? It seems like the paper refers to .* (which I understand) and _* (which I don't) in sometimes the same context? Normally _* would mean "an underscore zero or more times".
1 comments
shmolyneaux
110 days ago
That's noted further down the page:
- `_*` = any string
link
cognisent
110 days ago
I guess _ is trying to be like, "No, really, anything," while . has some limitations?
link
viega
109 days ago
.* does NOT match newlines, so always will stop a match at the end of a line.
link
- `_*` = any string