gpt4 book ai didi

applescript - 在AppleScript字符串中使用引号

转载 作者:行者123 更新时间:2023-12-03 22:17:24 27 4
gpt4 key购买 nike

我正在使用AppleScript,需要这样做:

set TextToWrite to " #!/bin/bash cd "$( dirname "$0" )" java -server -Xmx4G -jar ./craftbukkit.jar" "


如您所见,我需要在字符串中加上引号。我该如何设定

#!/bin/bash cd "$( dirname "$0" )" java -server -Xmx4G -jar ./craftbukkit.jar"


到AppleScript字符串而没有引号将其弄乱了吗?

最佳答案

要将文字引号插入Applescript字符串中,您必须将其转义,即

set myString to "This is a \"quoted\" text."


AppleScript与大多数语言具有相同的约定,即使用反斜杠转义特殊字符,其中只有两个:引号和…反斜杠。请参见 section “Special string characters” of the AppleScript Language Guide

关于applescript - 在AppleScript字符串中使用引号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10667800/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com