在Ruby中只删除字符串中的表情符号

时间:2015-11-12 20:30:18

标签: ruby-on-rails ruby emoticons

用户正在使用表情符号,这是错误的我的应用程序。如何检查字符串是否包含表情符号并仅删除表情符号?

 Message.create(user: @user, ticket: @ticket, text: "\r\nIm done with this bug! \u{1f431}!\r\n")

 ActiveRecord::StatementInvalid: Mysql2::Error: Incorrect string value: 'x90\xB1!\x0D

1 个答案:

答案 0 :(得分:3)

这是因为您的数据库不允许使用utf8mb4,因此您需要检查两者并返回文本。我会将检查作为回调进行,并且只有在文本字段发生变化时才会减少调用回调的次数。

 before_save :ensure_utf8, if: :text_changed?

def ensure_utf8
   if self.text
      self.text = self.text.encode( Encoding.find('UTF-8'), { invalid: :replace, undef: :replace, replace: '' } )
      self.text = self.text.each_char.select { |c| c.bytes.first < 240 }.join('')
   end
end