作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在 javascript 的 set
中执行不区分大小写的查找?
我遇到这样一种情况,我有一组允许的字符串,但不能确保它们属于哪种情况。我需要根据该组验证用户输入。我怎样才能做到这一点?
const countries = new Set();
countries.add("USA");
countries.add("japan");
// returns false, but is there any way I could get
//`my set to ignore case and return true?`
console.log(countries.has("usa"));
console.log(countries.has("USA"));
最佳答案
在添加字符串之前或执行 .has
检查之前,请始终在字符串上调用 .toLowerCase
。当然,您也可以将其抽象为一个类(如果确实有必要的话):
class CaseInsensitiveSet extends Set {
constructor(values) {
super(Array.from(values, it => it.toLowerCase()));
}
add(str) {
return super.add(str.toLowerCase());
}
has(str) {
return super.has(str.toLowerCase());
}
delete(str) {
return super.delete(str.toLowerCase());
}
}
const countries = new CaseInsensitiveSet([
"Usa",
]);
console.log(countries.has("usa")); // true
关于javascript - 如何在 javascript 集中执行不区分大小写的查找?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55458947/
我是一名优秀的程序员,十分优秀!