cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Remove unwanted characters from keys or column headings

peter
New Contributor III

I have a pipeline which reads zip files which contain csv files and loads the files into sql table.

The zip files contain csv files with column headings which contain spaces, ()/ etc and I would like to remove these fromt he column headings dynamically.

e.g.
Column head 1 => ColumnHead1
Column/head (2) =>. ColumnHead2
etc

I have used $.mapKeys((value, key) => key.toLowerCase().split(โ€™ โ€˜).map(x=> x.capitalize()).join(โ€™')), Which removes spaces and Capitalises OK, but I cant figure out how to remove the other characters.

Thanks

1 REPLY 1

bojanvelevski
Valued 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