findFullMatch( RegEx, String )

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

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