Hacker News new | ask | show | jobs
by gskinner 4456 days ago
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.

1 comments

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