算数运算符
加、减、乘、除、乘方^
set sum to 3^3 ,输出27
&运算符
作用:合并字符串、合并数组
如
set str to "hello world"
set str2 to "good morning "
set str3 to str2 & str
\转义字符
字符串中有引号时
set str6 to "他说:\"你好!\""
display dialog str6
字符串要显示“\”时,再加一个反斜杠
set str6 to "\\他说:\"你好!\""
display dialog str6
比较运算符号
等于:=或is或is equal to (注意:不是==)
大于等于:>=或is greater than or equal to
相遇等于:<= 或is less than or equal to
不等于:= (注意:不是!=)
举例:
set num1 to 5
if num1 /= 4 then
display dialog "不相等"
end if
逻辑运算符
and 与
or 或
not 非
网友评论