Can we write code to remove text from the result?

I want to delete the last 3 characters.
image

Might not be correct but it works LOL

1 Like

Glad to hear you figured it out! If it works and you can’t read it it’s good I’d say :slight_smile:

For a slightly simpler approach just removing the last three characters you could consider using .slice(). An expression like {{ $json["location"].slice(0, -3) }} would do the job I think.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.