Method: String#include?
- Defined in:
- string.c
#include?(other_str) ⇒ Boolean
Returns true if str contains the given string or character.
"hello".include? "lo" #=> true
"hello".include? "ol" #=> false
"hello".include? ?h #=> true
4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 |
# File 'string.c', line 4800
static VALUE
rb_str_include(VALUE str, VALUE arg)
{
long i;
StringValue(arg);
i = rb_str_index(str, arg, 0);
if (i == -1) return Qfalse;
return Qtrue;
}
|