I used perl, unix and java regular expression lot of time, but I'm surprised in java about that:
"help".matches("^h")
is false!!
From java documentation: http://download.oracle.com/javase/1.4.2/docs/api/java/lang/String.html#matches(java.lang.String)
"true if, and only if, this string matches the given regular expression"
"help".matches("^h.*")
or
"help".matches("^h.*$")
return of course true.
It's surprising only me?
"^expression$"adding a$at the end of it. I was also expecting a match with the first example. – Matteo Sep 14 '11 at 15:38