次の の使用法では、引用符の間に配置されることgsub
を期待しています。"No, but I heard it's short and soft."
初回は空いています。すぐにもう一度実行すると、正しく動作します。
clean_content = "[quote="PDrizzle":1g581fap]No, but I heard it's short and soft.[/quote:1g581fap]\r\n\r\nwith very few ascents\r\n\r\nheh"
clean_content.gsub(
/\[quote(?:.*)\](.*?)\[\/quote(?:.*)\]/,
"<blockquote>#{$1}</blockquote>"
)
# => "<blockquote></blockquote>\r\n\r\nwith very few ascents\r\n\r\nheh"
clean_content.gsub(
/\[quote(?:.*)\](.*?)\[\/quote(?:.*)\]/,
"<blockquote>#{$1}</blockquote>"
)
# => "<blockquote>No, but I heard it's short and soft.</blockquote>\r\n\r\nwith very few ascents\r\n\r\nheh"
何が起こっているのですか?