1. 程式人生 > >英文文章分詞及已知單詞位置計算單詞在文章中起始下標

英文文章分詞及已知單詞位置計算單詞在文章中起始下標

###英文文章分詞及已知單詞位置計算單詞在文章中起始下標
####背景
1.由於最近專案中需要,要實現類似文章跟讀的效果,但已知的只有每個單詞在文章中的位置下標(即每個單詞在文章中是在第幾個單詞),那麼要實現跟讀效果就必須根據每個單詞在文章中的位置計算出每個單詞在整個文章中的具體下標。比如:“My name is Tom.”,我們只知道“My” 、“name”、“is”、“Tom”在文章中分別是第0、1、2、3個單詞,而要實現跟讀則必須計算出每個詞具體的起始下標,如“My” 、“name”、“is”、“Tom”每個詞在文章中的起始下標分別為0、3、8、11。這樣才能用spanableString實現跟讀效果(用法在下一篇部落格講,這裡只關注分詞相關)

####實現
1.分詞

  • 首先將分別資訊進行分詞。分詞的步驟是先將文字中的多餘空格和換行符、製表符等去掉,只保留每個單詞(帶符號)之間的一個空格,然後根據空格將文字進行分詞。(當然專案中的文章資源需要配合,保證每個詞/詞+符號 間有空格)這裡故意保留符號,符號是算在前一個詞裡面的,因為跟讀標記需要把標點也標記進去。
public String[] divideToWords(String text) {
    String[] words;
    String str = text.replaceAll("\\s+|\t|\n|\r" +
            "|\n\n", " ");
    str = str.trim();  //去掉收尾空格
    words = str.split(" ");
    return words;
}

2.計算每個單詞在文章中的下標

  • 實現過程需要注意的點:某個單詞可能在文章中出現多次;某些單詞是縮寫的形式,中間可能存在一些字元而非純字母組成(I’m、don’t等)。
  • 實現步驟:先計算每個詞在文章中出現次數,用hashMap儲存,key為單詞,value為出現次數,同時用另一個hashMap儲存第n個單詞的資訊(只要關注第n個單詞在文章中是第幾次出現);然後遍歷每個單詞,計算每個單詞在文章中的開始下標。
  • 匹配單詞的規則是前面是非英文字元,後面是空格、回車等(文章最後如果沒有,要先補上,否則最後一個可能匹配不上);用正則匹配時要注意先轉義* ?等特殊字元,因為這些字元在正則表示式中有特殊的意義和作用。
 public HashMap<Integer, WordEntity> calculateTextStartIndex(String[] words, String text) {

        wordCountMap.clear();
        wordEntitiesMap.clear();

        for (int i = 0; i < words.length; i++) {
            AppsLog.i(TAG, "單詞" + i + " : " + words[i]);

            int repeatCount = 1;
            if (wordCountMap.get(words[i]) != null) {
                repeatCount = wordCountMap.get(words[i]) + 1;
            }
            wordCountMap.put(words[i], repeatCount); //記錄單詞出現次數(第幾次出現)

            WordEntity entity = new WordEntity();
            entity.setUnit_index(i);
            entity.setWord(words[i]);
            entity.setRepeatCount(repeatCount); //第幾次出現
            wordEntitiesMap.put(i, entity); //記錄單詞資訊
        }

        //迴圈遍歷查詢每個單詞的下標
        for (int i = 0; i < wordEntitiesMap.size(); i++) {
            WordEntity entity = wordEntitiesMap.get(i);
            int repeatCount = entity.getRepeatCount();
            String word = entity.getWord();

            int totalIndex = -1;
            String temp = text;
            for (int j = 0; j < repeatCount; j++) {
                int index = -1;
                if (i == 0) {
                    //如果是第一個單詞,直接用indexOf
                    index = temp.indexOf(word);
                    if (index != -1) {
                        AppsLog.i(TAG, "Found1 : " + word + "  at  " + index);
                    }
                } else {
                    //非第一個單詞,需要用正則不斷匹配取得下標,同時得跳過前面已經重複的單詞(檢測要匹配的單詞,單詞的前面必須是空格或者標點符號)
                    String patternWord = word.replace(".", "\\.")   //轉義替換正則的特殊字元
                            .replace("?", "\\?")
                            .replace("*", "\\*")
                            .replace("+", "\\+")
                            .replace("^", "\\^")
                            .replace("(", "\\(")
                            .replace(")", "\\)")
                            .replace("$", "\\$")
                            .replace("[", "\\[")
                            .replace("]", "\\]")
                            .replace("{", "\\{")
                            .replace("}", "\\}")
                            .replace("|", "\\|");
                    //.replace("\\", "\\\\") 
                    //前面必須非英文字母,後面為空格或回車等(I'm)
                    Pattern p = Pattern.compile("[^\\w]" + patternWord + "[\\s\\r\\n]"); 
                    Matcher m = p.matcher(temp);
                    if (m.find()) {
                        index = m.start() + 1;   //起始下標
                        AppsLog.i(TAG, "Found2 : " + word + "  at  " + index);
                    }
                }

                if (index != -1) {  //找到
                    temp = temp.substring(index + word.length());  //去掉已匹配過的前面的文字
                    if (totalIndex == -1) {
                        totalIndex = 0;
                    }
                    totalIndex += (index + word.length());  //算幾次index的總和加詞的長度
                    if (totalIndex != 0) {
                        if (j == (repeatCount - 1)) {     //最後一次匹配,index減去單詞長度
                            totalIndex -= word.length();
                        }
                    }
                } else {
                    if (totalIndex == -1) {
                        totalIndex = 0;
                    }
                    if (totalIndex != 0) {
                        if (j == (repeatCount - 1)) {
                            totalIndex -= word.length();
                        }
                    }
                }
            }
            if (totalIndex != -1) {
                entity.setStartPos(totalIndex);
            }
            wordEntitiesMap.put(i, entity);
        }
        for (int i = 0; i < wordEntitiesMap.size(); i++) {
            AppsLog.i(TAG, "" + i + " : " + wordEntitiesMap.get(i));
        }

        return wordEntitiesMap;
    }