.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. The matching is performed using caseless comparisons.
start must be a positive whole number.
"Saturday"~caselessMatch(6, "day") --> 1
"Saturday"~caselessMatch(6, "DAY") --> 1
"Saturday"~caselessMatch(6, "SUNDAY", 4, 3) --> 1
"Saturday"~caselessMatch(6, "daytime", 1, 3) --> 1