Concept Flow - Regular expression functions (regexp_match, regexp_replace)
Input String
Apply regexp_match
Return first match array or NULL
Apply regexp_replace
Return string with replacements
Output Result
The input string is processed by regexp_match to find matching parts, returning an array or NULL. Then regexp_replace substitutes matching parts with a new string, returning the modified string.