, " " 5.2.3 The Matcher Class The

, " " 5.2.3 The Matcher Class The Matcher class provides a rich API for matching regular expression patterns against character sequences. A Matcher instance is always created by invoking the matcher() method of a Pattern object, and it always applies the regular expression pattern encapsulated by that Pattern: package java.util.regex; public final class Matcher{ public Pattern pattern() public Matcher reset() public Matcher reset (CharSequence input) public boolean matches() public boolean lookingAt() public boolean find() public boolean find (int start) public int start() public int start (int group) public int end() public int end (int group) public int groupCount() public String group() public String group (int group) public String replaceFirst (String replacement) public String replaceAll (String replacement) public StringBuffer appendTail (StringBuffer sb) 173
Note: If you are looking for top 10 and very good webhost to host and run your jsp application check Actions jsp hosting services

Comments are closed.