Skip to main content
Solved

JavaScript evaluator: replace backslash

  • October 26, 2021
  • 1 reply
  • 3301 views

Dash
Headliner
Forum|alt.badge.img+3
  • Senior Technical Evangelist and Developer Advocate at Snowflake
  • 67 replies

Is there a more sophisticated way of removing backslash within a string? I've tried string.replace(/\\/g, ""), but that did not help.
 

Best answer by Dash

JavaScript replace returns a new string rather than modifying the string you call it on, so you need to do something like: 

records[i].value.name = records[i].value.name.replace(/\\/g,"");

Note that if you are modifying field names rather than their values, you need to build a list of the old keys, a map of the new keys and their values, and then apply the changes. If you try to operate on the keys while looping through them, you'll get a ConcurrentModificationException

View original
Did this topic help you find an answer to your question?

1 reply

Dash
Headliner
Forum|alt.badge.img+3
  • Author
  • Senior Technical Evangelist and Developer Advocate at Snowflake
  • 67 replies
  • Answer
  • October 26, 2021

JavaScript replace returns a new string rather than modifying the string you call it on, so you need to do something like: 

records[i].value.name = records[i].value.name.replace(/\\/g,"");

Note that if you are modifying field names rather than their values, you need to build a list of the old keys, a map of the new keys and their values, and then apply the changes. If you try to operate on the keys while looping through them, you'll get a ConcurrentModificationException


Reply