containsExact

Returns true if this string contains exactly the provided string. This method uses RegEx to evaluate and its case-sensitive. What makes it different from the classic contains is that it doesn't uses indexOf, hence it's more performant when used on long char sequences and has much higher probabilities of not returning false positives per approximation.