如何在Ruby中使用字符串方法
4 回答
慕田峪7331174
TA贡献1828条经验 获得超13个赞
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
- 4 回答
- 0 关注
- 820 浏览
添加回答
举报
0/150
提交
取消