Jans

Jans

  • NA
  • 1
  • 0

C# equivalent for appendReplacement in java

Feb 12 2007 4:53 AM
Is there any C# equivalent code for the appendReplacement  functionality in JAVA. I guess no! but could anyone help me to get it?

Java Code:
Pattern p = Pattern.compile("cat");
Matcher m = p.matcher("one cat two cats in the yard");
StringBuffer sb = new StringBuffer();
while (m.find()) {
     m.appendReplacement(sb, "dog");
}
m.appendTail(sb);
System.out.println(sb.toString());

O/P: one dog two dogs in the yard

Answers (1)