Forum Discussion
bojanvelevski
4 years agoValued Contributor
Hey @peter,
Use the .replaceAll()
function for all of the characters. It will look something like this:
$.mapKeys((value, key) => key.toLowerCase().replaceAll(' ','').replaceAll('(','').replaceAll(')',''))
There’s an option to list all characters in one function, like 'Replace all of these characters with ‘’ ’ but until I found the exact syntax, you can use a separate function for every character you want to remove.
Bojan