Method: String#valid_encoding?
- Defined in:
- string.c
#valid_encoding? ⇒ Boolean
Returns true
if self
is encoded correctly, false
otherwise:
"\xc2\xa1".force_encoding("UTF-8").valid_encoding? # => true
"\xc2".force_encoding("UTF-8").valid_encoding? # => false
"\x80".force_encoding("UTF-8").valid_encoding? # => false
11424 11425 11426 11427 11428 11429 11430 |
# File 'string.c', line 11424
static VALUE
rb_str_valid_encoding_p(VALUE str)
{
int cr = rb_enc_str_coderange(str);
return RBOOL(cr != ENC_CODERANGE_BROKEN);
}
|