Power Automate payload
{
"function": "regex.replace",
"input": {
"input": "abc123",
"pattern": "\\d+",
"flags": "g",
"replacement": "X"
}
}Deno Deploy function gateway
Run regex operations through stable JSON APIs, manage tokens, and keep future function libraries behind the same call contract.
Use GET /api/health for flow connection checks.
{
"function": "regex.replace",
"input": {
"input": "abc123",
"pattern": "\\d+",
"flags": "g",
"replacement": "X"
}
}Add an HTTP action header: Authorization with valueBearer <token>.
Bootstrap admin calls use x-bootstrap-admin-key while creating the first token.
Check whether text matches a regular expression and return matches.
regex.matchReplace regular expression matches in text.
regex.replaceExtract numbered and named captures from text.
regex.extract