Matches Looking : Matcher « Regular Expressions « Java






Matches Looking

   
/* From http://java.sun.com/docs/books/tutorial/index.html */

/*
 * Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * -Redistribution of source code must retain the above copyright notice, this
 *  list of conditions and the following disclaimer.
 *
 * -Redistribution in binary form must reproduce the above copyright notice,
 *  this list of conditions and the following disclaimer in the documentation
 *  and/or other materials provided with the distribution.
 *
 * Neither the name of Sun Microsystems, Inc. or the names of contributors may
 * be used to endorse or promote products derived from this software without
 * specific prior written permission.
 *
 * This software is provided "AS IS," without a warranty of any kind. ALL
 * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING
 * ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
 * OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN MIDROSYSTEMS, INC. ("SUN")
 * AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE
 * AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
 * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST
 * REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL,
 * INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY
 * OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE,
 * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
 *
 * You acknowledge that this software is not designed, licensed or intended
 * for use in the design, construction, operation or maintenance of any
 * nuclear facility.
 */

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

public final class MatchesLooking {

  private static final String REGEX = "foo";

  private static final String INPUT = "fooooooooooooooooo";

  private static Pattern pattern;

  private static Matcher matcher;

  public static void main(String[] argv) {

    // Initialize
    pattern = Pattern.compile(REGEX);
    matcher = pattern.matcher(INPUT);

    System.out.println("Current REGEX is: " + REGEX);
    System.out.println("Current INPUT is: " + INPUT);

    System.out.println("lookingAt(): " + matcher.lookingAt());
    System.out.println("matches(): " + matcher.matches());

  }
}


           
         
    
    
  








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 groupMatcher group
10.Matcher group with parameterMatcher group with parameter
11.Matcher group countMatcher group count
12.Matcher matchMatcher match
13.Matcher findMatcher find
14.Matcher find with parameterMatcher find with parameter
15.Matcher LookingAtMatcher LookingAt
16.Matcher appendReplacementMatcher appendReplacement
17.Matcher replaceAllMatcher replaceAll
18.Matcher replaceFirstMatcher replaceFirst
19.Matcher group 2Matcher group 2
20.Matcher group with parameter 2Matcher group with parameter 2
21.Matcher ground countMatcher ground count
22.Matcher replaceAll 2Matcher replaceAll 2
23.Matcher find groupMatcher find group
24.Another Matcher find and groupAnother Matcher find and group
25.Pattern compilePattern compile
26.Show line ending matching using Regular Expressions classShow line ending matching using Regular Expressions class
27.Matcher Groups Matcher Groups
28.Match Name Formats
29.Checks whether a string matches a given wildcard pattern
30.Replace all occurances of the target text with the provided replacement text
31.Check if a text is present at the current position in a buffer for string
32.This program tests regular expression matching