Leandro
Member since Feb 18, 2010
- Profile: /members/5477-leandro.htm
- Comments: 3
Recent Blog Comments By Leandro
-
Case Insensitive Java Regular Expressions - How Did I Miss That!?!
Posted on Jun 26, 2012 at 5:50 PM
@Keith Starsmeare Thank you.... read more »
-
Case Insensitive Java Regular Expressions - How Did I Miss That!?!
Posted on Mar 6, 2010 at 11:17 AM
class DontWorkWithAccent { public static void main(String[] args) { String str = "Águia"; str = str.replaceAll("(?i)[á]", "a"); System.out.println(str); str = str.replaceAll("(?i)[Á]", "a"); System.out.println(str); } }... read more »
-
Case Insensitive Java Regular Expressions - How Did I Miss That!?!
Posted on Feb 18, 2010 at 2:45 PM
Hi! It doesn't work with accents … :/ Try: Águia I consider this a bug. Do you know some workaround?... read more »