The
useAnchoringBounds(boolean) method of
Matcher Class is used to set the anchoring bounds of this matcher. By anchoring bounds, it means that the matcher will be matched for the anchors like ^ and $ for getting a match, if the anchoring bounds are set to true. This method returns a Matcher with the modified anchoring bounds.
Syntax:
public boolean useAnchoringBounds(
boolean setAnchoringBounds)
Parameters: This method takes a parameter
setAnchoringBounds which is a boolean value depicting the anchoring bounds of this matcher to be modified into.
Return Value: This method returns a
Matcher with the modified anchoring bounds.
Below examples illustrate the Matcher.useAnchoringBounds() method:
Example 1:
Output:
Does this matcher has anchoring bounds: true
Example 2: