Removing non-numeric characters

Hi,
the automation I’m building is supposed to watch whenever there’s an Abandoned Checkout in Shopify.

If the prospect has entered in their phone number, it shows up as (123) 456-7890.

I’ve tried the Iterator → Split function, but this only seems to work with 1 argument.

What can I do so that I’m left with an array 1234567890?

You can directly use parseNumber function for this.

{{parseNumber(123) 456-7890)}}

Screenshot from 2023-06-13 23-44-41
Screenshot from 2023-06-13 23-44-56

Thank you so much, this helped me.