で正規表現を使用するただし、これはエラーno implicit conversion of Regexp into String
どのように私はすべての文字列の開始に合わせて、これをフォーマットすることができを返します。 $で?
$highlight test
test
$highlight test
で正規表現を使用するただし、これはエラーno implicit conversion of Regexp into String
どのように私はすべての文字列の開始に合わせて、これをフォーマットすることができを返します。 $で?
$highlight test
test
$highlight test
あなたのコードはpost.comment
が文字列であると仮定すると、Rubyの2.2.5とRailsの4.2に私のために動作します。
は、あなたも試すことができsub
を使用して、以下:
raw(post.comment.gsub(/^\$.*$/) { |item| "<mark>#{item}</mark>" })
? –
@AnthonyE 4.1.10 – aidiah