Remove quotation marks when exporting

1.7k Views Asked by At

How do you remove quotation marks then exporting String values of multiple words?

For example:

"Compact Lamber"  
Amazonka  
Eri  
"AM 10-6-7"  

Should be:

Compact Lamber  
Amazonka  
Eri  
AM 10-6-7

Thank you!

1

There are 1 best solutions below

0
On
$F{fieldName} = $F{fieldName}.replace("\"", "")