i have a variable that contain :
word1:w1
word2:w2
i would know how to extract w1 and w2 , i think i have to use " set the itemDelimiter to colon " but i can't understand how to use it after.
(i will put w1 and w2 into a field "f1" and "f2"
Code: Select all
put the num of lines of myVariable into nbLigne
repeat with ligne=1 to nbLigne
...
put ... into field ("f"& ligne)
end repeat