Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
vinicio_giorno
Partner - Contributor
Partner - Contributor

replacing characters in a field with characters contained in another table

how do I replace in the INDIRIZZI field the letters contained in the ORIGINE field of the ACCENTI table with the corresponding readings of the MODIFICA field?


INDIRIZZI:

Load * inline

[

Indirizzi

via dell'invisibilità

via mèredit

via vòlo

viale mìnà

via minù

]

ACCENTI

Load * inline

[

ORGINE,MODIFICA

à,a

è,e

ì,i

ò,o

ù,u

]

1 Solution

Accepted Solutions
jyothish8807
Master II
Master II

Hi vinicio,

Try this:

ACCENTI:

Mapping Load * inline [

ORGINE,MODIFICA

à,a

è,e

ì,i

ò,o

ù,u

];

INDIRIZZI:

Load Indirizzi,

MapSubString('ACCENTI',Indirizzi) as New_Indirizzi;

Load * inline

[

Indirizzi

via dell'invisibilità

via mèredit

via vòlo

viale mìnà

via minù

];

Br,

KC

Best Regards,
KC

View solution in original post

2 Replies
jyothish8807
Master II
Master II

Hi vinicio,

Try this:

ACCENTI:

Mapping Load * inline [

ORGINE,MODIFICA

à,a

è,e

ì,i

ò,o

ù,u

];

INDIRIZZI:

Load Indirizzi,

MapSubString('ACCENTI',Indirizzi) as New_Indirizzi;

Load * inline

[

Indirizzi

via dell'invisibilità

via mèredit

via vòlo

viale mìnà

via minù

];

Br,

KC

Best Regards,
KC
vinicio_giorno
Partner - Contributor
Partner - Contributor
Author

Very Good!