Returns a Binding if the regex matches the start of the string and absent otherwise. Similar to isPrefixMatch, 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.findPrefixMatch( "hello there" );
There is 1 result
org.millscript.millscript.datatypes.Binding@....
:-) regex.findPrefixMatch( "Oh! Hello there" );
There is 1 result
absent