How do I remove quotes?

Hello! I’m a beginner. Help me solve the problem. I need to remove the quotes through the expression in the Edit Fields node. I receive such data as “First name”, “Last name”, “Address”. This data is in quotes (((

It looks like your topic is missing some important information. Could you provide the following if applicable.

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

Hi @artstlanik

Can you share the exact output you expect and what you are getting currently?

Either share your workflow here by pasting them as JSON in between two block quotes (```) or at least a screenshot to see what you mean.

Thank You :pray:

.replace(/"/g, “”)

1 Like

If it’s a string you could use the .replaceAll() function, like so:

If that’s what you mean? :thinking:

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