我想测试一下名为note.attachment_content_type
的字符串是否包含单词"image"
。我该怎么做?感谢
答案 0 :(得分:3)
使用String#include?
note.attachment_content_type.include?("image")
答案 1 :(得分:2)
您可以使用Regexp
:
if note.attachment_content_type =~ /image/
puts "Found"
end
答案 2 :(得分:1)
我会使用String#[]
note.attachment_content_type[/image/]