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

link|improve this question

feedback

3 Answers

up vote 7 down vote accepted

One option is to set a capturing group:

"hello8".replaceAll("([1-9])", "!$1");

Another option is to use $0, which means the whole match:

"hello8".replaceAll("[1-9]", "!$0");

See also: regular-expressions.info/java

link|improve this answer
Gotta wait 5 minutes to except a perfectly good answer... – Glenn Nelson Dec 17 '10 at 22:16
feedback

You can write something like this: "hello8".replaceAll("([1-9])", "!$1"); See javadoc

link|improve this answer
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);

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.