From c8572d0c0d5366caba7e9ebc162013564b6f9bf0 Mon Sep 17 00:00:00 2001 From: wilwong-twilio <109997887+wilwong-twilio@users.noreply.github.com> Date: Wed, 6 Aug 2025 10:50:21 -0700 Subject: [PATCH] Update actions.md --- src/connections/destinations/actions.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/connections/destinations/actions.md b/src/connections/destinations/actions.md index 207bcc18f7..8132257e7c 100644 --- a/src/connections/destinations/actions.md +++ b/src/connections/destinations/actions.md @@ -350,7 +350,7 @@ This example converts an email address to lowercase and removes extra whitespace {% endraw %} ``` -Input: `event.properties.email` = "user@example.com" +Input: `event.properties.email` = " User@Example.com " Output: user@example.com @@ -378,9 +378,9 @@ This example formats a phone number by removing non-digit characters, adding a c {% endraw %} ``` -Input: `event.properties.phone` = "(123) 456-7890" +Input: `event.properties.phone` = "(234) 567-8901" -Output: +11234567890 +Output: +12345678901 Explanation: * The `assign` tag stores the cleaned phone number after applying `strip` and `remove` filters to eliminate whitespace and non-digit characters (for example, `-`, `(`, `)`).