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

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


汪汪一只猫
浏览 619回答 3
3回答

偶然的你

c中是strstr.ruby 1.9.3中包含:include? other_str → true or false click to toggle sourceReturns true if str contains the given string or character."hello".include? "lo" #=> true"hello".include? "ol" #=> false"hello".include? ?h #=> true

LEATH

String类中有一个方法 public boolean contains(Sting s)就是用来判断当前字符串是否含有参数指定的字符串 例 s1=“takecatb” s2=“te” 语句:s1.contains(s2) //s1调用这个方法 若其值为ture说明s1包含s2 若为fasle 则不包含
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Ruby