ruby 中怎样判断一个字符串是不是另外一个字符串的子集?
4 回答
一只名叫tom的猫
TA贡献1906条经验 获得超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
慕仙森
TA贡献1827条经验 获得超7个赞
您可以通过指定 2 个索引得到 list 的子集, 叫做一个 “slice” 。返回值是一个新的 list, 它包含了 list 中按顺序从第一个 slice 索引 (这里为 li[1]) 开始, 直到但是不包括第二个 slice 索引 (这里为li[3]) 的所有元素。
- 4 回答
- 0 关注
- 2588 浏览
添加回答
举报
0/150
提交
取消