The regex is [^\r\n.!]*(?i)tel*[^\r\n]+
but it somehow could detect the words telephone
and testing
.
But why testing
? I don't get this because the l
is explicitly written in the regex.
https://regex101.com/r/7Z8KkK/1
At Regex101, it explains...
te matches the characters te literally (case insensitive)
l matches the character l with index 10810 (6C16 or 1548) literally (case insensitive)
But I don't understand the explanation and why it views te
and l
separately.