只与regexp匹配一场

时间:2013-02-18 16:42:25

标签: javascript regex object loops iterator

在下面的函数中,我遍历一个包含字符串的数组(事件)。字符串描述了从另一个网络应用程序中删除的事件(犯罪或事故),我正在做的是分割和计算不同的犯罪/事故并将它们放在一个对象中(INCIDENT_MATCHES)。

但是,某些文本字符串可能包含我搜索的几个关键字(例如“枪声”和“电池”),但我不想要。相反,我只想要计算第一个找到的单词,如果找到更多关键字,则应忽略它们。

怎么可以这样做?

var INCIDENT_MATCHES = {
    battery: /\w*(bråk)\w*|överfall|slagsmål|slogs|misshandel|misshandlad|\w*(tjuv)\w*/ig,
    burglaries: /snattade|snattare|snatta|inbrott|bestulen|stöld|\w*(tjuv)\w*/ig,
    robberies: /\w*(rån)\w*|personrån|\w*(ryckning)\w*|väskryckt*/ig,
    gunfire: /skottlossning|skjuten|sköt/ig,
    drugs: /narkotikabrott/ig,
    vandalism: /skadegörelse|klotter|\w*(klottra)\w*/ig,
    trafficAccidents: /(trafik|bil)olycka|(trafik|bil)olyckor|\w*(personbil)\w*|singelolycka|kollision|\w*(kollidera)\w*|påkörd|trafik|smitningsolycka/ig,
};

var j = 0,
incidentCounts = {},
incidentTypes = Object.keys(INCIDENT_MATCHES);

incidents.forEach(function(incident) {
    matchFound = false;

    incidentTypes.forEach(function(type) {
        if(typeof incidentCounts[type] === 'undefined') {
            incidentCounts[type] = 0;
        }
        var matchFound = incident.match(INCIDENT_MATCHES[type]);

        if(matchFound){
            matchFound = true;
            incidentCounts[type] += 1;
        }
    });

    j++;
});

2 个答案:

答案 0 :(得分:1)

您可以从“each”处理程序返回false以停止迭代。

    if(matchFound){
        matchFound = true;
        incidentCounts[type] += 1;
        return false;
    }

编辑 - 你需要(我认为)在外部循环结束时的另一个测试:

  j++; // I don't understand what that does ...
  if (matchFound) return false;

答案 1 :(得分:0)

我在下面找到了这个解决方案。我做的是以下内容:

  1. 我用“every”
  2. 替换了第二个forEach语句
  3. 在“if(matchFound)”
  4. 中加入“return false”
  5. 添加了“else {return true;}”,以便在找不到匹配项时继续循环。
  6. 代码:

    incidents[2].forEach(function(incident) {
        matchFound = false;
    
        incidentTypes.every(function(type) {
            if(typeof crimesPerType[type] === 'undefined') {
                crimesPerType[type] = 0;
        }
        var matchFound = incident.match(INCIDENT_MATCHES[type]);
    
        if(matchFound){
            crimesPerType[type] += 1;
            if (type == 'trafficAccidents') {
                incidents[3][j].push('traffic');
            }
            else {
                incidents[3][j].push('crime');
            }
            return false;
        }
        else {
            return true;
        }
    });