Hello community, I have a phone number from a variable which starts with 49 so for example: 4956789 . and I would like to replace this 49 that is in front with a 0. That means I need a query that says if there is a 49 at the beginning, then replace it with a 0.
Hello @Praktikant,
Use module set variable.
Then try this
{{replace(4956789; "/^49/"; 0)}}
You should also, check this for more common issues https://academy.make.com/
Make sure you mark the replay as a solution when you get the right answer.
Thanks for the answer, I still had to remove the quotation marks at /^49/ . and then it worked.
Right, When you directly copy any function or values from Make’s module it’s changed.
It has its own set of structure of parameters, semicolons and parentheses.
That’s why I suggest you check for Make Academy.