java.util.regex.Matcher.appendTail() Method



Description

The java.time.Matcher.appendTail(StringBuffer sb) method implements a terminal append-and-replace step.

Declaration

Following is the declaration for java.time.Matcher.appendTail(StringBuffer sb) method.

public Matcher appendTail(StringBuffer sb)

Parameters

  • sb − The target string buffer.

Return Value

The target string buffer.

Example

The following example shows the usage of java.time.Matcher.appendTail(StringBuffer sb) method.

package com.tutorialspoint;

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

public class MatcherDemo {
   private static String REGEX = "a*b";
   private static String INPUT = "aabfooaabfooabfoob";
   private static String REPLACE = "-";
   public static void main(String[] args) {
      Pattern pattern = Pattern.compile(REGEX);
      
      // get a matcher object
      Matcher matcher = pattern.matcher(INPUT);
      StringBuffer buffer = new StringBuffer();
      
      while(matcher.find()) {
         matcher.appendReplacement(buffer, REPLACE);
      }
      matcher.appendTail(buffer);
      System.out.println(buffer.toString());
   }
}

Let us compile and run the above program, this will produce the following result −

-foo-foo-foo-
javaregex_matcher.htm
Advertisements