Matcher appendReplacement : Matcher « Regular Expressions « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Collections Data Structure
8. Database SQL JDBC
9. Design Pattern
10. Development Class
11. Email
12. Event
13. File Input Output
14. Game
15. Hibernate
16. J2EE
17. J2ME
18. JDK 6
19. JSP
20. JSTL
21. Language Basics
22. Network Protocol
23. PDF RTF
24. Regular Expressions
25. Security
26. Servlets
27. Spring
28. Swing Components
29. Swing JFC
30. SWT JFace Eclipse
31. Threads
32. Tiny Application
33. Velocity
34. Web Services SOA
35. XML
Microsoft Office Word 2007 Tutorial
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Java » Regular Expressions » MatcherScreenshots 
Matcher appendReplacement
Matcher appendReplacement


import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class MatcherAppendReplacementGroupExample {
  public static void main(String args[]) {
    Pattern p = Pattern.compile("(James) (Bond)");
    StringBuffer sb = new StringBuffer();

    String candidateString = "My name is Bond. James Bond.";

    String replacement = "$1 Waldo $2";

    Matcher matcher = p.matcher(candidateString);
    matcher.find();

    matcher.appendReplacement(sb, replacement);

    String msg = sb.toString();
    System.out.println(msg);
  }

}

           
       
Related examples in the same category
1. Matcher: Find DemoMatcher: Find Demo
2. Matcher ResetMatcher Reset
3. Matcher PatternMatcher Pattern
4. Another Matcher resetAnother Matcher reset
5. Matcher startMatcher start
6. Matcher start with parameterMatcher start with parameter
7. Matcher endMatcher end
8. Matcher end with parameterMatcher end with parameter
9. Matcher groupMatcher group
10. Matcher group with parameterMatcher group with parameter
11. Matcher group countMatcher group count
12. Matcher matchMatcher match
13. Matcher findMatcher find
14. Matcher find with parameterMatcher find with parameter
15. Matcher LookingAtMatcher LookingAt
16. Matcher replaceAllMatcher replaceAll
17. Matcher replaceFirstMatcher replaceFirst
18. Matcher group 2Matcher group 2
19. Matcher group with parameter 2Matcher group with parameter 2
20. Matcher ground countMatcher ground count
21. Matcher replaceAll 2Matcher replaceAll 2
22. Matcher find groupMatcher find group
23. Another Matcher find and groupAnother Matcher find and group
24. Pattern compilePattern compile
25. Show line ending matching using Regular Expressions classShow line ending matching using Regular Expressions class
26. Matcher Groups Matcher Groups
27. Matches Looking
ww_w__.j_a__va__2__s_.__c___o_m__ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.