Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions? | Software Development
 

Using the Captured Text of a Group within a Replacement Pattern

In this section, you will learn how to use the captured text from the group of the text.

Using the Captured Text of a Group within a Replacement Pattern

                         

In this section, you will learn how to use the captured text from the group of the text. This section illustrates you how to capture the string or text through the regular expression and it is also used through the regular expression. Here as you seen the regular expression of the code which has been used to capture each and every word one by one i.e. "(\\w+)" and another regular expression is "\"$1\"" i.e. used to replace with the same word covering by the "<>" characters.

"$1": This is the regular expression which determines the same word or characters where it is used for the specific purposes.

Here is the code of the program:

import java.util.regex.*;
import java.io.*;

public class CapturedText{
  public static void main(String[] argsthrows IOException{
    BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
    System.out.print("Enter string: ");
    String string = in.readLine();
    Pattern p = Pattern.compile("(\\w+)");
    Matcher m = p.matcher(string);
    String str = m.replaceAll("\"$1\"");
    System.out.println(str);
  }
}

Download this example.

                         

» View all related tutorials
Related Tags: c reference methods references method user system using id package node create check if preferences for call exists to automatic

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
 
Tell A Friend
Your Friend Name

 

 
Recently Viewed
Software Solutions
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.