Folgende Benutzer bedankten sich beim Autor Aba für den Beitrag:
ichse18577
Code: Alles auswählen.
data c60 type c length 60.
data tst type string.
data tch type c length 56.
clear c60.
c60+54(6) = '123456'.
tst = `Dies ist der 1 Test string `.
overlay tst with c60.
write : / tst.
tst = `Dies ist der 2 Test string `.
overlay tst with c60.
write : / tst.
tst = `Dies ist der 3 Test string `.
overlay tst with c60.
write : / tst.
tch = `Dies ist der 4 Test char 111122`.
overlay tch with c60.
write : / tch.
Ausgabe:
Dies ist der 1 Test string 123456
Dies ist der 2 Test string 1234
Dies ist der 3 Test string 12
Dies ist der 4 Test char 111122 12