| Author |
Regular Expression in String
|
paul pavlentey
Greenhorn
Joined: Jul 20, 2006
Posts: 10
|
|
How regular expression string should look like to find the match in the string of word "amp". I want to use method String.matches(String regex). Thank you in advance.
|
 |
Garrett Rowe
Ranch Hand
Joined: Jan 17, 2006
Posts: 1295
|
|
If you want the word amp (i.e. the regular expression doesnt match the amp in stamp or lamp) the you would use: boolean match = myString.matches("\\bamp\\b"); [ August 28, 2006: Message edited by: Garrett Rowe ]
|
Some problems are so complex that you have to be highly intelligent and well informed just to be undecided about them. - Laurence J. Peter
|
 |
 |
|
|
subject: Regular Expression in String
|
|
|