Replacing text using regex : Text Replace « Regular Expressions « Java Tutorial
- Java Tutorial
- Regular Expressions
- Text Replace
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class MainClass {
public static void main(String args[]) {
String regex = "(\\w)(\\d)(\\w+)";
Pattern pattern = Pattern.compile(regex);
String candidate = "W3C";
Matcher matcher = pattern.matcher(candidate);
String tmp = matcher.replaceAll("$33");
System.out.println("REPLACEMENT: " + tmp);
System.out.println("ORIGINAL: " + candidate);
}
}
8.9.Text Replace |
| 8.9.1. | Replacing text using regex |