REGEXMATCH function do in Google Sheets?REGEXMATCH checks if a text matches a pattern you give it. It returns TRUE if it matches, and FALSE if it does not.
REGEXEXTRACT work in Google Sheets?REGEXEXTRACT finds and returns the part of the text that matches the pattern you give. If nothing matches, it returns an error.
=REGEXMATCH("apple pie", "apple") return?This will return TRUE because the text "apple pie" contains the word "apple" which matches the pattern.
=REGEXEXTRACT("Order #12345", "\d+") return?This extracts the first group of digits from the text. It will return 12345.
REGEXEXTRACT finds no match?If no match is found, REGEXEXTRACT returns an #N/A error because it cannot extract anything.
REGEXMATCH return when the pattern matches the text?REGEXMATCH returns TRUE if the pattern matches the text.
REGEXEXTRACT returns the part of the text that matches the pattern.
=REGEXMATCH("hello world", "world") return?The text contains "world", so REGEXMATCH returns TRUE.
\d+ mean in a regex pattern?\d+ means one or more digits (numbers).
REGEXEXTRACT does not find a match, what happens?REGEXEXTRACT returns a #N/A error if no match is found.