NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
It is specified… (Score:1)
although you have to really search for it.
String("foo").matches("bar")says that it's equivalent toPattern.matches("bar","foo"), which is equivalent toPattern.compile("bar").matcher("foo").matches(); thePattern.matchermethod returns aMatcherobject, whose documentation says «Thematchesmethod attempts to match the entire input sequence against the pattern» and «Thefindmethod scans the input sequence looking for the next subsequence that matches the pattern».No, it's not clear, it's not easy to find, but it is there… Python, on the other hand, has a section in the Library Reference clearly titled «Matching vs Searching» where it explains the same thing.
Reply to This