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!

link|improve this question
How are you exporting the String value? In other words, post some JRXML code that shows a minimal example of the problem. – Dave Jarvis Feb 24 '11 at 19:19
feedback

1 Answer

$F{fieldName} = $F{fieldName}.replace("\"", "")
link|improve this answer
feedback

Your Answer

 
or
required, but never shown