Applescript: count Length

1

Ho creato un codice che conta la lunghezza di una variabile e agisce in base alla lunghezza.

Funziona bene tranne quando ho una variabile in questo formato:

"00108030-00045C9E2638502E"

1: il conteggio restituisce 8 e non 25 2: Ho l'errore:

"Can’t make 8 into type boolean." number -1700 from 8 to boolean"

Ecco un'anteprima del mio codice: "

set theGUIDLength to (get length of (GUID as text))
if theGUIDLength is equal to 25 or 8 then
--
end if

"

    
posta Kevin 25.11.2018 - 12:12
fonte

1 risposta

1

Credo che quello che stai cercando sia:

if theGUIDLength = 25 or theGUIDLength = 8 then
## do code
end if
    
risposta data 25.11.2018 - 12:27
fonte

Leggi altre domande sui tag