在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
热门推荐
10 哥哥中考加油祝福语简短
11 中秋祝福语简短版大全
12 新婚抖音祝福语简短
13 兄弟的结婚祝福语简短
14 恭喜新郎父母简短祝福语
15 朋友节最简短祝福语
16 新年发给客户祝福语简短
17 满月红包英文祝福语简短
18 生日祝福语简短明了 同事