FileDocCategorySizeDatePackage
CaseMatch.javaAPI DocExample866Sun Feb 08 21:33:42 GMT 2004None

CaseMatch

public class CaseMatch extends Object
Show case control using RE class.
author
Ian F. Darwin, http://www.darwinsys.com/
version
$Id: CaseMatch.java,v 1.4 2004/02/09 03:33:41 ian Exp $

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] argv)

		String pattern = "^q[^u]\\d+\\.";
		String input = "QA777. is the next flight. It is on time.";

		Pattern reCaseInsens = Pattern.compile(pattern, Pattern.CASE_INSENSITIVE);
		Pattern reCaseSens = Pattern.compile(pattern);

		boolean found;
		Matcher m;
		m = reCaseInsens.matcher(input);	// will match any case
		found = m.lookingAt();				// will match any case
		System.out.println("IGNORE_CASE match " + found);

		m = reCaseSens.matcher(input);	// Get matcher w/o case-insens flag
		found = m.lookingAt();		// will match case-sensitively
		System.out.println("MATCH_NORMAL match was " + found);