在JavaScript中查找十六进制代码的有效性
如果字符串不包含0-9和af字母以外的其他字符,则可以将其视为有效的十六进制代码。
例如:
'3423ad' is a valid hex code '4234es' is an invalid hex code
我们需要编写一个JavaScript函数,该函数接受一个字符串并检查其是否为有效的十六进制代码。
示例
为此的代码将是-
const str1 = '4234es';
const str2 = '3423ad';
const isHexValid = str => {
const legend = '0123456789abcdef';
for(let i = 0; i < str.length; i++){
if(legend.includes(str[i])){
continue;
};
return false;
};
return true;
};
console.log(isHexValid(str1));
console.log(isHexValid(str2));输出结果
控制台中的输出将为-
false true
热门推荐
6 保研的祝福语简短
10 年轻20岁祝福语简短
11 朋友结婚祝福语信息简短
12 女孩婚礼贺卡祝福语简短
13 30段点歌简短祝福语
14 虎年春节祝福语图文简短
15 写给后妈祝福语大全简短
16 简短回复生日祝福语
17 校长送毕业祝福语简短
18 毕业立体贺卡祝福语简短