Skip to content

Comment on RegExr 2.0

Comments

Why can I not match against "\w*" for instance? It just says "infinite" and does not seem to attempt to match.

Creator here - this is because \w* matches 0 characters, and thus matches infinitely. You can roll over the "infinite" error for details, or look in the help.

Try \w+ instead.

But \w* matches "" and "abc" but not "!a". How can I test this with your tool if \w* always says "infinite"?

AboutSource Built by g1lg1l

Hackerly is an independent reader for Hacker News, built on the public HN API. Not affiliated with Y Combinator.