Webhook Integration: Podio Globiflow to Make

You’d probably need to use either a Text Parser Match Pattern or maybe some inline functions.

Can you provide some examples of what you have vs what you’re trying to extract?

For example, with this:

You want just “School House, Winkburn”?
You also said you don’t want commas, so you just want “School House Winkburn”?

If you simply want to get the first two parts, if separated by commas, you can use some inline functions like this:

Input
image

Function:
image

Output:
image

Basically you split the text by comma, get the first element from the resultant array, then split it again, then get the second element in the resultant array. They are combined just by specifying them in the order in which you want them.

If you want to get fancy, you’d do something like add a Google Maps module to try to figure out the address, break it into its parts, then return only the parts you need, like the street name, etc…

2 Likes