I have a string which is looking like this for example Lübeck Nürnberg Österreich
with "Umlaute".
Now I want to split
it and add the new "words" on the string like this Lübeck Nürnberg Österreich Luebeck Nuernberg Oesterreich
.
So ä
should be ae
, ö
should be oe
and ü
should be ue
.
But I have no clue how to achieve this, thank you!
DATA: lt_split TYPE TABLE OF char40.
SPLIT string AT space INTO TABLE lt_split.