Checks if this string view contains the pattern.
pattern
bool contains(String pattern, [int start = 0]) { return indexOf(pattern, start) != -1; }