함수 is_hex()

is_hex()
is_xdigit()
ctype_xdigit()
is_hexadecimal()

1 JavaScript[ | ]

function is_hex(str) { return /^[0-9a-fA-F]+$/.test(str); }
// true
console.log(is_hex("ffffff"));
console.log(is_hex("ab12bc99"));
console.log(is_hex("AB10BC99"));
// false
console.log(is_hex("AR1012"));
console.log(is_hex("fz5500"));

2 PHP[1][ | ]

var_dump( ctype_xdigit('AB10BC99') );
var_dump( ctype_xdigit('AR1012') );
var_dump( ctype_xdigit('ab12bc99') );
# bool(true)
# bool(false)
# bool(true)

3 같이 보기[ | ]

4 주석[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}