为了账号安全,请及时绑定邮箱和手机立即绑定

ruby 中怎样判断一个字符串是不是另外一个字符串的子集?

ruby 中怎样判断一个字符串是不是另外一个字符串的子集?

汪汪一只猫 2019-03-13 10:09:48
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

查看完整回答
反对 回复 2019-03-23
?
LEATH

TA贡献1936条经验 获得超6个赞

String类中有一个方法 public boolean contains(Sting s)就是用来判断当前字符串是否含有参数指定的字符串 例 s1=“takecatb” s2=“te” 语句:s1.contains(s2) //s1调用这个方法 若其值为ture说明s1包含s2 若为fasle 则不包含

查看完整回答
反对 回复 2019-03-23
  • 3 回答
  • 0 关注
  • 618 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信