我需要检查一个geohash字符串是否有效,所以我需要检查它是否是base32。
Base32使用A-Z和2-7进行编码,并添加一个填充字符=
以获得8个字符的倍数,因此您可以创建一个正则表达式来查看候选字符串是否匹配。
使用regex.exec
,匹配的字符串将返回匹配信息,不匹配的字符串会返回null
,因此您可以使用if
来测试匹配是真是假。
Base32编码也必须始终是8的倍数,并用足够的=
字符填充以使其成为8的倍数;您可以使用mod 8
-if (str.length % 8 === 0) { /* then ok */ }
检查长度是否正确
// A-Z and 2-7 repeated, with optional `=` at the end
let b32_regex = /^[A-Z2-7]+=*$/;
var b32_yes = 'AJU3JX7ZIA54EZQ=';
var b32_no = 'klajcii298slja018alksdjl';
if (b32_yes.length % 8 === 0 &&
b32_regex.exec(b32_yes)) {
console.log("this one is base32");
}
else {
console.log("this one is NOT base32");
}
if (b32_no % 8 === 0 &&
b32_regex.exec(b32_no)) {
console.log("this one is base32");
}
else {
console.log("this one is NOT base32");
}
function isBase32(input) {
const regex = /^([A-Z2-7=]{8})+$/
return regex.test(input)
}
console.log(isBase32('ABCDE23=')) //true
console.log(isBase32('aBCDE23=')) //false
console.log(isBase32('')) //false
console.log(isBase32()) //false
console.log(isBase32(null)) //false
console.log(isBase32('ABCDE567ABCDE2==')) //true
console.log(isBase32('NFGH@#$aBCDE23==')) //false
//我把这个小HTML&js按钮。
<!DOCTYPE html>
<html>
<head>
<title>Base32/Base64 Checker</title>
</head>
<body>
<h1>Base32/Base64 Checker</h1>
<label for="input">Enter a string:</label>
<input type="text" id="input" name="input"><br><br>
<button onclick="check()">Check</button>
<p id="result"></p>
<script>
function check() {
var input = document.getElementById("input").value;
var isBase32 = /^[A-Z2-7]+=*$/.test(input);
var isBase64 = /^[A-Za-z0-9+/]+=*$/i.test(input);
var result;
if (isBase32) {
result = "The input is Base32 encoded.";
} else if (isBase64) {
result = "The input is Base64 encoded.";
} else {
result = "Neither Base32 nor Base64 !.";
}
document.getElementById("result").innerHTML = result;
}
</script>
</body>
</html>