Comment on RegExr 2.0parentComments−gskinner12yCreator 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.−strictfp12yBut \w* matches "" and "abc" but not "!a". How can I test this with your tool if \w* always says "infinite"?
Comments
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"?