oct()
public
Treats leading characters of str as a string of octal digits (with
an optional sign) and returns the corresponding number. Returns 0 if the
conversion fails.
"123".oct
"-377".oct
"bad".oct
"0377bad".oct
Show source
/*
* call-seq:
* str.oct => integer
*
* Treats leading characters of <i>str</i> as a string of octal digits (with an
* optional sign) and returns the corresponding number. Returns 0 if the
* conversion fails.
*
* "123".oct
* "-377".oct
* "bad".oct
* "0377bad".oct
*/
static VALUE
rb_str_oct(str)
VALUE str;
{
return rb_str_to_inum(str, -8, Qfalse);
}