2013-02-14 93 views
2

我不能在''如何在Ruby中使用'?

使用'這得到語法錯誤:( 假設@ post.user.nickname是John

@message = @post.user.nickname + ''s post' 

它必須是John's post

如何使用'

回答

5

嘗試

@message = @post.user.nickname + "'s post" 

@message = @post.user.nickname + '\'s post' 
+0

非常感謝你。 – HUSTEN 2013-02-14 07:24:12