Q: I'd like to get the phone number format of: 9998887777. I'm starting with the formatting: 999-888-7777.
A: Use the following handlebars expression:
{{regexReplace this.0.[Phone] "" "[^0-9]" "g"}
If you have a leading 1 before the value such as 1 (999) 888-7777 and need 9998887777, use this expression:
{{regexMatch (regexReplace this.0.[Phone] "" "[^\d]" "g") "\d{10}$" "g"}}