How is possible to change a telephone number from this format +393201234567 to this one 3201234567?
Hi @Lorenzo1
Have a look at the substring function it will let you remove the first 4 characters
It seems you have one argument too many.
The substring function only uses 3 arguments:
- Text (your whatsapp_number)
- start point
- end point
but it seems you gave 4.
This is how I’d approach it, start at position 2 (in this example, the “+” sign is auto-removed by Make, so it might be position 3 for your), and continue until the end of the string. So end argument becomes length() of the string. This adds flexibility in case the length varies.
Hi. Trys this:
{{substring(+393201234567; 2; 14)}}
If you need additional support, please don’t hesitate to reach out.
Cheers
//HFBR
I think you want to start with 3
{{substring(<phone>; 3; length(<phone>)-1}}
i you just want to remove the first 4 characters you just need to use
{{substring(2.test; 4)}} replace 2.test with your whatsapp variable
I’ve solved. I had written uncorrectly the substring formula. Thanks to all of you for your precious support