ruby 中怎样判断一个字符串是不是另外一个字符串的子集?
3 回答
偶然的你
TA贡献1841条经验 获得超3个赞
c中是strstr.
ruby 1.9.3中包含:
include? other_str → true or false click to toggle source
Returns true if str contains the given string or character.
"hello".include? "lo" #=> true
"hello".include? "ol" #=> false
"hello".include? ?h #=> true
LEATH
TA贡献1936条经验 获得超6个赞
String类中有一个方法 public boolean contains(Sting s)就是用来判断当前字符串是否含有参数指定的字符串 例 s1=“takecatb” s2=“te” 语句:s1.contains(s2) //s1调用这个方法 若其值为ture说明s1包含s2 若为fasle 则不包含
- 3 回答
- 0 关注
- 618 浏览
添加回答
举报
0/150
提交
取消