我如何在Ruby中使用'?

时间:2013-02-14 06:55:05

标签: ruby-on-rails ruby-on-rails-3

我无法在'

中使用''

这会出现语法错误:( 假设@ post.user.nickname为John

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

必须是John's post

如何使用'

1 个答案:

答案 0 :(得分:5)

尝试

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

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