Hi,
ich komme bei folgendem Code beim Debuggen nicht weiter:
put field "Quelle" into quelle
put field "Stichwoerter" into stichwoerter
repeat for each word myWord in stichwoerter
if word myWord is in quelle then
repeat for each line z in quelle -- hier zeigt die Fehlermeldung hin!
if (space & myWord & space) is in line z of quelle then
put line z of field "Quelle" after field "Auswahl"
end if
end repeat
end if
end repeat
Die Fehlermeldung lautet:
field „Stichwoerter“: compilation error at line 9 (if: missing ‚then‘) near „repeat“, char 1
Es sieht so aus, als ob LC ein fehlendes then anmahnt, aber das ist doch da, oder?