Recevied data strings without spaces

Hi Everyone,

I have an issue with string data in make.com. I received a webhook that includes the street address, but I have no spaces between, please check the screenshot


Need help to put spaces between the words shown in the screenshot.

Thanks in advance

Do you need to do that just for this string or any address that comes in? Seems it would be hard to know when a string starts and when it ends in an arbitrary address.

2 Likes

You can use a regular expression pattern to split the strings by capital letters using the text parser match pattern module.

Then you can join them back using a space.

4 Likes

Now that’s a pretty good idea. Assuming that capital letters are automatically added and that happens for all addresses. What if lower case address info is entered?

2 Likes

Google Address autocomplete API perhaps?

2 Likes

Can you please show me how to do that? Thanks in advance