如何在使用单引号的回声中使用单引号

2022-08-30 20:31:14

首先,我已经经历了相关的问题。没有找到任何答案..我正在使用此代码显示一条消息

echo 'Here goes your message with an apostrophe S like thi's ';

我怎么能做到这一点,因为这个回声中的任何引用都会破坏声明......


答案 1

可以使用反斜杠转义引号,或使用双引号指定字符串。

echo 'Here goes your message with an apostrophe S like thi\'s';

echo "Here goes your message with an apostrophe S like thi's";

答案 2

使用反斜杠转义引号。

'hello\'s'

反斜杠后出现的单引号将显示在屏幕上。


推荐