like
Checks whether a given expression fuzzy matches the specified pattern.
regexp
Checks whether a given expression matches the regular expression specified by `pattern`.
regexp_count
Counts the number of times a pattern occurs in a string.
regexp_extract
This function returns the first matching substring in the target value which matches the regular expression pattern.
regexp_extract_all
Extracts all substrings from the target string (`str`) that matches a regular expression pattern (`pattern`) and corresponds to the regex group index specified by `pos`.
regexp_replace
This function uses repl to replace a sequence of characters in str that matches a regular expression pattern.