match word '90%' using regular expression
- by amadhu
Hi All,
I want word '90%' to be matched with my String "I have 90% shares of this company".
how can I write regular expression for same?
I tried something like this:
Pattern p = Pattern.compile("\\b90\\%\\b", Pattern.CASE_INSENSITIVE
| Pattern.MULTILINE);
Matcher m = p.matcher("I have 90% shares of this company");
while (m.find()){
System.out.println(m.group());
}
but no luck.
Can any one thow some lights on this?
Many thanks,
Archi