I need to transform something like: "foo_bar_baz_2" to "fooBarBaz2"
I'm trying to use this Pattern:
Pattern pattern = Pattern.compile("_([a-z])");
Matcher matcher = pattern.matcher("foo_bar_baz_2");
Is it possible to use matcher to replace the first captured group (the letter after the '_') with the captured group in upper case?
fooBarBaz_2because[a-z]doesn't match2. – Tim Pietzcker Jul 20 '11 at 12:13