VOOZH about

URL: https://www.geeksforgeeks.org/java/matcher-appendtailstringbuffer-method-in-java-with-examples/

⇱ Matcher appendTail(StringBuffer) method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Matcher appendTail(StringBuffer) method in Java with Examples

Last Updated : 27 Nov, 2018
The appendTail(StringBuffer) method of Matcher Class behaves as a append-and-replace method. This method reads the input string and appends it to the given StringBuffer at the tail position. Syntax:
public StringBuffer appendTail(StringBuffer buffer)
Parameters: This method takes a parameter buffer which is the StringBuffer that stores the target string. Return Value: This method returns a StringBuffer with the target String replaced. Below examples illustrate the Matcher.appendTail() method: Example 1:
Output:
Before Replacement: GeeksForGeeks Geeks for For Geeks Geek
After Replacement: GEEKSForGEEKS GEEKS for For GEEKS Geek
Example 2:
Output:
Before Replacement: FGF FGF FGF FGF
After Replacement: GFG GFG GFG GFG
Reference: https://docs.oracle.com/javase/9/docs/api/java/util/regex/Matcher.html#appendTail-java.lang.StringBuffer-
Comment