Exercises, examples and other material relating to training module J816. This module is presented on
Private Courses and
Specially Run Courses only
As from release 1.4, Java 2 comes with a regular expression class that supports patterns similar in style to Perl regular expressions. This page gives ... http://www.wellho.net/solutions/java-reg ... -java.html [longer article] |
Over the years I've been teaching people about Regular Expressions, I've learnt what does and doesn't work in such tuition. A casual question I saw yesterday ... http://www.wellho.net/mouth/1195_Reg ... rimer.html [short article] |
import java.util.regex.*;
public class Reg1 {
public static void main (String [] args) {
/* Set up a pattern of the form
non-spaces, an @, ... http://www.wellho.net/resources/ex.php4?item=j816/Reg1.java [code sample] |
/* Look for phone numbers starting with a 0 after a space
character and replace the 0 with "+44 (0)" */
import java.util.regex.*;
public class Reg6 ... http://www.wellho.net/resources/ex.php4?item=j816/Reg6.java [code sample] |
import java.util.regex.*;
import java.io.*;
public class Reg2 {
public static void main (String [] args) throws IOException {
File in = new ... http://www.wellho.net/resources/ex.php4?item=j816/Reg2.java [code sample] |
import java.util.regex.*;
import java.io.*;
public class Reg3 {
public static void main (String [] args) throws IOException {
File in = new ... http://www.wellho.net/resources/ex.php4?item=j816/Reg3.java [code sample] |
import java.util.regex.*;
public class Reg4 {
public static void main (String [] args) {
Pattern email = Pattern.compile("(\\S+)@(\\S+)");
... http://www.wellho.net/resources/ex.php4?item=j816/Reg4.java [code sample] |
As from release 1.4, Java 2 comes with a regular expression class that supports patterns similar in style to Perl regular expressions. This module gives you a brief introduction to regular expressions if you're not already familiar with them, then covers Java-specific topics such as compile and match methods, Pattern objects and PatternSyntaxExceptions.
This module is presented on
Private Courses and
Specially Run Courses only
Examples from our training material
| Reg1.java | Regular expressions - look for email address |
| Reg2.java | Regular expressions - look for all matching lines in a file |
| Reg3.java | Look for all lines containing a term and report the first field from matching lines |
| Reg4.java | Look for email address on command line and report on user and domain name parts |
| Reg6.java | Regular expressions - match and replace |
Background information
Some modules are
available for download as a sample of our material or under an
Open Training Notes License for free download from
http://www.training-notes.co.uk.
Topics covered in this module
Basic handling of strings.
An introduction to regular expressions.
The elements of a regular expression..
Expanding the power of regular expressions.
Literal Characters.
Anchors and Assertions.
Character Groups.
Counts.
An Example.
Expanding the power of pattern objects.
Flags.
Splitting.
The Matcher.
Capturing the String that matched a pattern.
Using regular expressions to replace one string by another.
Other regular expression topics.
Exceptions.
Extending Regular Expressions.
Operations on StringBuffers.
Complete learning
If you are looking for a complete course and not just a information on a single subject, visit our
Listing and schedule page.
Well House Consultants specialise in training courses in
Java,
Python,
Perl,
PHP, and
MySQL. We run
Private Courses throughout the UK (and beyond for longer courses), and
Public Courses at our training centre in Melksham, Wiltshire, England.
It's surprisingly cost effective to come on our public courses -
even if
you live in a different
country or continent to us.
We have a technical library of over 700 books on the subjects on which we teach.
These books are available for reference at our training centre. Also
available is the Opentalk
Forum for discussion of technical questions.