Matcher group : 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 group
Matcher group


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

public class MatcherGroupExample {
  public static void main(String args[]) {
    test();
  }

  public static void test() {
    Pattern p = Pattern.compile("Bond");

    String candidateString = "My name is Bond. James Bond.";
    Matcher matcher = p.matcher(candidateString);

    matcher.find();
    System.out.println(matcher.group());
  }
}

           
       
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 group with parameterMatcher group with parameter
10. Matcher group countMatcher group count
11. Matcher matchMatcher match
12. Matcher findMatcher find
13. Matcher find with parameterMatcher find with parameter
14. Matcher LookingAtMatcher LookingAt
15. Matcher appendReplacementMatcher appendReplacement
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
w__ww__.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.