if myfile ends with "jpg" then
answer "E' un'immagine!"
end if
Vi ricordo che, per controllare se le estensione di un file è tra quelle ammesse, un altro sistema molto comodo è metterle tutte in una stringa separate da virgola e usare il seguente codice:
if char -3 to -1 of myfile is among the items of "jpg,gif,bmp,tif" then
answer "E' un'immagine!"
end if
Per controllare invece se un testo comincia con un certo prefisso, basta usare begins with; esempio:
if myfile begins with "C'era una volta" then
answer "E' una favola!"
end if
Se avete altri sistemi per fare controlli sulle stringhe, metteteli nei commenti di questo posto.
Nessun commento:
Posta un commento