I don't understand why with this regex the method returns false;
Pattern.matches("\\bi", "an is");
the character i is at a word boundary!
|
|
|
In Java, This is true for If you want to check if there's a match somewhere in a string, you can use
|
You mentioned pretty much every string or regex method except find. :) – Matthew Flaschen Jul 8 '10 at 10:15 |
|
@Matthew: yeah I specifically only list the ones in java.lang.String. I mean, I can write an essay if I really want to cover everything (e.g. compiling). I'm not sure if I really should, though. – polygenelubricants Jul 8 '10 at 10:21 |
|
The whole string has to match if you use matches:
This allows 0 or more characters before and after. Or:
will tell you if any substring matches (true in this case). As a note, compiling regexes then keeping them around can improve performance. |
||||
|
|
I don't understand why Java decided to go in the opposite direction from languages like Perl that has supported regex natively for years. I threw the standard Java regex away and started using my own perl-style regex lib for Java called MentaRegex. See below how regex can make sense in Java. The method matches returns a boolean saying whether we have a regex match or not.
The method match returns an array with the groups matched. So it not only tells you whether you have a match or not but it also returns the groups matched in case you have a match.
The method sub allows you perform substitutions with regex.
Support global and case-insensitive regex.
Allows you to change the escape character in case you don't like to see so many '\'.
|
||||
|
|