标签: ruby
我有一个字符串变量需要检查子字符串是否存在,如:
str = "sdfgg"
需要检查str是否包含df
str
df
请帮我在ruby中编写代码来检查方案
答案 0 :(得分:3)
使用String#include?。
String#include?
str.include?("df")
答案 1 :(得分:1)
你也可以使用正则表达式:
if str =~ /df/ # Successful match else # Match attempt failed end