/

如何在 AppleScript 中連接字串

如何在 AppleScript 中連接字串

我習慣在 JavaScript、Swift、Python 和其他語言中使用 + 運算子來連接字串。

所以我試著在 AppleScript 中也使用這個運算子,但是它沒有起作用。

在 AppleScript 中,你需要使用 & 運算子:

1
2
set example to "hello"
"testing " & example

☝️ 這是 macOS 內建的 Script Editor(腳本編輯器)應用程式,我發現這是與 AppleScript 進行實驗的最佳方法。

tags: [“AppleScript”, “字串”, “運算子”]