indem du die Hilfe von Notes intensiv liest
aber gut - ich habe da was für dich:
liste_1 := "0" : "1" : "2" : "3" : "4" : "5";
liste_2 := "5" : "6" : "7" : "8" : "9";
@Prompt([OK]; "Listen "; "1. Liste# " + @Implode(liste_1;";") + @Char(10) + "2. Liste# " + @Implode(liste_2; ";"));
a := @Trim(@Unique(@Replace(liste_1; liste_2; "")));
b := @Trim(@Unique(@Replace(liste_2; liste_1; "")));
c := @Keywords(liste_2; liste_1; "");
d := @Trim(@Unique(@Replace(liste_1; c; "")));
@Prompt([OK]; "1. Liste MINUS 2. Liste"; @Implode(a; ";"));
@Prompt([OK]; "2.Liste MINUS 1. Liste"; @Implode(b; ";"));
@Prompt([OK]; "gemeinsame Listenwerte"; @Implode(c; ";"));
@Prompt([OK]; "gemeinsame Listenwert von 1. Liste löschen"; @Implode(d; ";"));
@Prompt([OK]; "1.Liste PLUS 2. Liste"; @Implode(liste_1 : liste_2; ";"));
@Prompt([OK]; "1.Liste PLUS(unique) 2. Liste"; @Implode(@Unique(liste_1 : liste_2); ";
cu