如果字符串不包含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