.true if the characters of the other match the
characters of the target string beginning at position start. Returns .false
if the characters are not a match.
start must be a positive whole number.
"Saturday"~match(6, "day") --> 1
"Saturday"~match(6, "DAY") --> 0
"Saturday"~match(6, "Sunday", 4, 3) --> 1
"Saturday"~match(6, "daytime", 1, 3) --> 1