javascript-按长度过滤国家名称

我正在尝试编写代码,使我可以从名称不满足最小和最大长度要求的数组中取出国家/地区名称.因此,假设我在页面上输入了4个最小值和6个最大值.我希望页面仅显示名称中包含4到6个字母的国家/地区名称.在Java中,我会写这个

String[] newArr = new String[0];
int pos = 0;

for(int i = 0; i > min && i<max; i++) {
    newArr[pos++] = oldArr[i]
}

但是我不确定用JavaScript写什么

解决方法:

在countryNames数组上使用过滤器.循环遍历每个元素,并检查长度,其中minLength值为4,maxLength值为6.

var minLength = 4; maxLength = 6;
var countryNames = ['abc', 'India', 'China', 'America', 'pqr', 'Bhutan'];
var res = countryNames.filter(function(country){
  if(country.length > minLength && country.length < maxLength){
    return country;
  }
});

console.log(res);

每次使用

var minLength = 4; maxLength = 6;
var countryNames = ['abc', 'India', 'China', 'America', 'pqr', 'Bhutan'];
var res = [];
countryNames.forEach(function(country){
  if(country.length > minLength && country.length < maxLength){
    res.push(country);
  }
});

console.log(res);
上一篇:python-如何根据另一列中的值减去df中的行


下一篇:R或Python-循环测试数据-未来24小时进行预测验证(每天96个值)