如何测试字符串是否包含某个单词(使用Ruby)?

时间:2013-12-13 13:59:07

标签: ruby match

我想测试一下名为note.attachment_content_type的字符串是否包含单词"image"。我该怎么做?感谢

3 个答案:

答案 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/]