在 AppleScript 中,我有两个变量。theURL 和 title.
如何把2个变量组合起来?直接用 “+”?
比如:
set the clipboard to theURL+title
是否可行?
拼接有以下用法:
set the clipboard to theURL & title
set the clipboard to theURL & title & "文本"
在 AppleScript 中,我有两个变量。theURL 和 title.
如何把2个变量组合起来?直接用 “+”?
比如:
set the clipboard to theURL+title
是否可行?
拼接有以下用法:
set the clipboard to theURL & title
set the clipboard to theURL & title & "文本"