예제 #1
0
        /// <summary>
        /// 在文本中查找所有的关键字
        /// </summary>
        /// <param name="text">文本</param>
        /// <returns></returns>
        public List <WordsSearchResult> FindAll(string text)
        {
            TrieNode2 ptr = null;
            List <WordsSearchResult> list = new List <WordsSearchResult>();

            for (int i = 0; i < text.Length; i++)
            {
                TrieNode2 tn;
                if (ptr == null)
                {
                    tn = _first[text[i]];
                }
                else
                {
                    if (ptr.TryGetValue(text[i], out tn) == false)
                    {
                        tn = _first[text[i]];
                    }
                }
                if (tn != null)
                {
                    if (tn.End)
                    {
                        foreach (var item in tn.Results)
                        {
                            var keyword = _keywords[item];
                            list.Add(new WordsSearchResult(i + 1 - keyword.Length, i, item, keyword.Length));
                        }
                    }
                }
                ptr = tn;
            }
            return(list);
        }
예제 #2
0
        /// <summary>
        /// 在文本中查找第一个关键字
        /// </summary>
        /// <param name="text">文本</param>
        /// <returns></returns>
        public WordsSearchResult FindFirst(string text)
        {
            TrieNode2 ptr = null;

            for (int i = 0; i < text.Length; i++)
            {
                TrieNode2 tn;
                if (ptr == null)
                {
                    tn = _first[text[i]];
                }
                else
                {
                    if (ptr.TryGetValue(text[i], out tn) == false)
                    {
                        tn = _first[text[i]];
                    }
                }
                if (tn != null)
                {
                    if (tn.End)
                    {
                        var item    = tn.Results[0];
                        var keyword = _keywords[item];
                        return(new WordsSearchResult(i + 1 - keyword.Length, i, item, keyword.Length));
                    }
                }
                ptr = tn;
            }
            return(null);
        }
예제 #3
0
        //internal string[] _others;

        #region 查找 替换 查找第一个关键字 判断是否包含关键字
        /// <summary>
        /// 判断文本是否包含关键字
        /// </summary>
        /// <param name="text">文本</param>
        /// <returns></returns>
        public bool ContainsAny(string text)
        {
            TrieNode2 ptr = null;

            foreach (char t in text)
            {
                TrieNode2 tn;
                if (ptr == null)
                {
                    tn = _first[t];
                }
                else
                {
                    if (ptr.TryGetValue(t, out tn) == false)
                    {
                        tn = _first[t];
                    }
                }
                if (tn != null)
                {
                    if (tn.End)
                    {
                        return(true);
                    }
                }
                ptr = tn;
            }
            return(false);
        }
예제 #4
0
        /// <summary>
        /// 在文本中替换所有的关键字
        /// </summary>
        /// <param name="text">文本</param>
        /// <param name="replaceChar">替换符</param>
        /// <returns></returns>
        public string Replace(string text, char replaceChar = '*')
        {
            StringBuilder result = new StringBuilder(text);

            TrieNode2 ptr = null;

            for (int i = 0; i < text.Length; i++)
            {
                TrieNode2 tn;
                if (ptr == null)
                {
                    tn = _first[text[i]];
                }
                else
                {
                    if (ptr.TryGetValue(text[i], out tn) == false)
                    {
                        tn = _first[text[i]];
                    }
                }
                if (tn != null)
                {
                    if (tn.End)
                    {
                        var maxLength = _keywords[tn.Results[0]].Length;

                        var start = i + 1 - maxLength;
                        for (int j = start; j <= i; j++)
                        {
                            result[j] = replaceChar;
                        }
                    }
                }
                ptr = tn;
            }
            return(result.ToString());
        }
예제 #5
0
            public bool Find2(string text, string hz, string[] pinyins, int keysCount)
            {
                int       findCount      = 0;
                int       lastWordsIndex = -1;
                TrieNode2 ptr            = null;

                for (int i = 0; i < text.Length; i++)
                {
                    TrieNode2 tn;
                    if (ptr == null)
                    {
                        tn = _first[text[i]];
                    }
                    else
                    {
                        if (ptr.TryGetValue(text[i], out tn) == false)
                        {
                            tn = _first[text[i]];
                        }
                    }
                    if (tn != null)
                    {
                        if (tn.End)
                        {
                            foreach (var result in tn.Results)
                            {
                                var index = _indexs[result];
                                if (index != findCount)
                                {
                                    continue;
                                }

                                var keyword = _keywords[result];
                                var start   = i + 1 - keyword.Length;
                                if (lastWordsIndex >= start)
                                {
                                    continue;
                                }

                                var  end            = i;
                                bool isok           = true;
                                var  keywordPinyins = _keywordPinyins[result];

                                for (int j = 0; j < keyword.Length; j++)
                                {
                                    var idx = start + j;
                                    var py  = keywordPinyins[j];
                                    if (py.Length == 1 && py[0] >= 0x3400 && py[0] <= 0x9fd5)
                                    {
                                        if (hz[idx] != py[0])
                                        {
                                            isok = false;
                                            break;
                                        }
                                    }
                                    else
                                    {
                                        if (pinyins[idx].StartsWith(py) == false)
                                        {
                                            isok = false;
                                            break;
                                        }
                                    }
                                }
                                if (isok)
                                {
                                    findCount++;
                                    lastWordsIndex = i;
                                    if (findCount == keysCount)
                                    {
                                        return(true);
                                    }
                                    break;
                                }
                            }
                        }
                    }
                    ptr = tn;
                }
                return(false);
            }