Hi there @Diggity,
Welcome to the Community!
You can add a Text in Formatter by Zapier - Replace function to remove the “fbn” data in your tags. The setup will look like this:
(view larger)
Here’s the output:
(view larger)
Hopefully, this helps!
Hi @Diggity
Good question.
You can use a Code step for this: https://zapier.com/apps/code/help
Some guidance:
Thanks Ken.a and Troy! I was trying to exclude items that contain the string so Ken.a’s method didn’t work for that. But ended up finding Troys article here which worked great.
So final code is:
let Set = inputData.Set.split(","); // creates array by splitting Input Data Variable at commas
let FilterBy = inputData.FilterBy; // value to filter the array by
Set = Set.filter(i => !i.includes(FilterBy)); // use ! EXCLUDE values in array
output = u{Set}];
That’s great news @Diggity! I’m glad to hear Troy’s suggestion worked!
Also, thank you for sharing the code this will be helpful to our other Community members who might run into a similar issue.
If you have any other questions, please don’t hesitate to reach out. We’re always happy to help!