ποΈ 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.