Now data format has changed and we start receiving lines with consecutive quotes.
How could I replace two consecutive quotes by One quote ?
Input :
123456789012345678901234567890123456789012345678901234567890
' ajskdjaskj ' ' aksjdkasjdkjdk'
Output :
' ajskdjaskj ' aksjdkasjdkjdk'
' ajskdjaskj ' aksjdkasjdkjdk'
Quote's position doesn't really matter. Only one is gone.
I'm trying with this but with no success :
INREC IFTHEN=(WHEN=INIT,FINDREP=(IN=c' ' '', OUT=c' ' '))
Any help is welcome ! Thanks