So if I wished to replace all numbers with a given value, I could just use
"hello8".replaceAll("[1-9]", "!");
--> hello!
Now is there a way to get the number that is actually being matched and add that in the mix?
e.g. --> hello!8
|
feedback
|
|
One option is to set a capturing group:
Another option is to use
See also: regular-expressions.info/java | |||
|
feedback
|
|
You can write something like this: "hello8".replaceAll("([1-9])", "!$1"); See javadoc | |||
|
feedback
|
|
Here you go! String s = "hello8"; String y = null; String t = null; Pattern p = Pattern.compile("[1-9]"); Matcher m = p.matcher(s); while(m.find()) { y = (m.group()); t = "!"+y; s = s.replace(y.toString(), t.toString()); } System.out.println(s); | |||
|
feedback
|