VOOZH about

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

⇱ Matcher hasTransparentBounds() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Matcher hasTransparentBounds() method in Java with Examples

Last Updated : 27 Nov, 2018
The hasTransparentBounds() method of Matcher Class is used to check if this matcher has transparent bounds or not. By transparent bounds, it means that the matcher will be matched for the matching pattern beyond the region boundaries for getting a match, if the transparent bounds are set to true. This method returns a boolean value stating the same. Syntax:
public boolean hasTransparentBounds()
Parameters: This method takes no parameters. Return Value: This method returns a boolean value stating whether this matcher has transparent bounds or not Below examples illustrate the Matcher.hasTransparentBounds() method: Example 1:
Output:
Does this matcher has transparent bounds: false
Example 2:
Output:
Does this matcher has transparent bounds: true
Reference: https://docs.oracle.com/javase/9/docs/api/java/util/regex/Matcher.html#hasTransparentBounds--
Comment