Hacker News new | ask | show | jobs
by buddydvd 1015 days ago
The part of regex

    [\w\.-_]
should really be

    [\w\.\-_]
instead.

But not that's not what caused the problem mentioned in this post.

(edited for clairifcation)