findSuffixMatch( RegEx, String )

Returns a Binding if the regex matches the end of the input string and absent otherwise. Similar to isSuffixMatch, but follows the convention that the find prefix denotes the absent-oriented version.

:-) var regex = //there/;
:-) regex;
There is 1 result
java.util.Pattern@.....
:-) regex.findSuffixMatch( "hello there" );
There is 1 result
org.millscript.millscript.datatypes.Binding@....
:-) regex.findSuffixMatch( "hello there you" );
There is 1 result
absent