Skip to content

Updates to liquid functions example #7818

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 7, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/connections/destinations/actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -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: [email protected]

Expand Down Expand Up @@ -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, `-`, `(`, `)`).
Expand Down
Loading