當前位置: 首頁>>代碼示例>>C#>>正文


C# WordLibrary.AddCode方法代碼示例

本文整理匯總了C#中Studyzy.IMEWLConverter.Entities.WordLibrary.AddCode方法的典型用法代碼示例。如果您正苦於以下問題:C# WordLibrary.AddCode方法的具體用法?C# WordLibrary.AddCode怎麽用?C# WordLibrary.AddCode使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Studyzy.IMEWLConverter.Entities.WordLibrary的用法示例。


在下文中一共展示了WordLibrary.AddCode方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: ImportLine

 public WordLibraryList ImportLine(string line)
 {
     string[] c = line.Split(' ');
     var wl = new WordLibrary();
     string code = c[0];
     wl.Word = c[1];
     wl.Count = DefaultRank;
     wl.PinYin = CollectionHelper.ToArray(pyGenerater.GetCodeOfString(wl.Word));
     wl.AddCode(CodeType, code);
     var wll = new WordLibraryList();
     wll.Add(wl);
     return wll;
 }
開發者ID:yongsun,項目名稱:imewlconverter,代碼行數:13,代碼來源:CangjiePlatform.cs

示例2: ImportLine

 public WordLibraryList ImportLine(string line)
 {
     string code = line.Split(' ')[0];
     string word = line.Split(' ')[1];
     var wl = new WordLibrary();
     wl.Word = word;
     wl.Count = DefaultRank;
     wl.AddCode(CodeType.Wubi, code);
     wl.PinYin = CollectionHelper.ToArray(pinyinFactory.GetCodeOfString(word));
     var wll = new WordLibraryList();
     if (wl.PinYin.Length > 0)
     {
         wll.Add(wl);
     }
     return wll;
 }
開發者ID:yongsun,項目名稱:imewlconverter,代碼行數:16,代碼來源:Wubi98.cs

示例3: ImportLine

 //private IWordCodeGenerater pyGenerater = new PinyinGenerater();
 public WordLibraryList ImportLine(string str)
 {
     var list = new WordLibraryList();
     string[] words = str.Split(' ');
     for (int i = 1; i < words.Length; i++)
     {
         string word = words[i];
         var wl = new WordLibrary();
         wl.Word = word;
         wl.Count = DefaultRank;
         wl.AddCode(CodeType, words[0]);
         //wl.PinYin = CollectionHelper.ToArray(pyGenerater.GetCodeOfString(word));
         list.Add(wl);
     }
     return list;
 }
開發者ID:yongsun,項目名稱:imewlconverter,代碼行數:17,代碼來源:Xiaoxiao.cs

示例4: BuildWordLibrary


//.........這裏部分代碼省略.........
                int index1 = Sort.FindIndex(i => i == newSort[0]); //最小的一個
                if (index1 == 0 && ContainCode) //第一個是拚音
                {
                    wl.PinYinString = strlist[0];
                }
                if (index1 == 1)
                {
                    wl.Word = strlist[0];
                }
                if (index1 == 2 && ContainRank)
                {
                    wl.Count = Convert.ToInt32(strlist[0]);
                }
                if (strlist.Length > 1)
                {
                    int index2 = Sort.FindIndex(i => i == newSort[1]); //中間的一個
                    if (index2 == 0 && ContainCode) //第一個是拚音
                    {
                        wl.PinYinString = strlist[1];
                    }
                    if (index2 == 1)
                    {
                        wl.Word = strlist[1];
                    }
                    if (index2 == 2 && ContainRank)
                    {
                        wl.Count = Convert.ToInt32(strlist[1]);
                    }
                }
                if (strlist.Length > 2)
                {
                    int index2 = Sort.FindIndex(i => i == newSort[2]); //最大的一個
                    if (index2 == 0 && ContainCode) //第一個是拚音
                    {
                        wl.PinYinString = strlist[2];
                    }
                    if (index2 == 1)
                    {
                        wl.Word = strlist[2];
                    }
                    if (index2 == 2 && ContainRank)
                    {
                        wl.Count = Convert.ToInt32(strlist[2]);
                    }
                }

                wl.PinYin = wl.PinYinString.Split(new[] { CodeSplitString }, StringSplitOptions.RemoveEmptyEntries);

            }
            else//不是拚音,那麽就拋棄直接加入Unknown Code。
            {
                int index1 = Sort.FindIndex(i => i == newSort[0]); //最小的一個
                if (index1 == 0 && ContainCode) //第一個是Code
                {
                    wl.AddCode(CodeType.Unknown, strlist[0]);
                }
                if (index1 == 1)
                {
                    wl.Word = strlist[0];
                }
                if (index1 == 2 && ContainRank)
                {
                    wl.Count = Convert.ToInt32(strlist[0]);
                }
                if (strlist.Length > 1)
                {
                    int index2 = Sort.FindIndex(i => i == newSort[1]); //中間的一個
                    if (index2 == 0 && ContainCode) //第一個是Code
                    {
                        wl.AddCode(CodeType.Unknown, strlist[1]);
                    }
                    if (index2 == 1)
                    {
                        wl.Word = strlist[1];
                    }
                    if (index2 == 2 && ContainRank)
                    {
                        wl.Count = Convert.ToInt32(strlist[1]);
                    }
                }
                if (strlist.Length > 2)
                {
                    int index2 = Sort.FindIndex(i => i == newSort[2]); //最大的一個
                    if (index2 == 0 && ContainCode) //第一個是拚音
                    {
                        wl.AddCode(CodeType.Unknown, strlist[2]);
                    }
                    if (index2 == 1)
                    {
                        wl.Word = strlist[2];
                    }
                    if (index2 == 2 && ContainRank)
                    {
                        wl.Count = Convert.ToInt32(strlist[2]);
                    }
                }

            }
            return wl;
        }
開發者ID:huoxudong125,項目名稱:imewlconverter,代碼行數:101,代碼來源:ParsePattern.cs

示例5: ImportLine

        public virtual WordLibraryList ImportLine(string line)
        {
            var wlList = new WordLibraryList();
            string[] strs = line.Split(' ');

            for (int i = 1; i < strs.Length; i++)
            {
                string word = strs[i].Replace(",", ""); //把漢字中帶有逗號的都去掉逗號
                var list = pinyinFactory.GetCodeOfString(word);
                for (int j = 0; j < list.Count; j++)
                {
                    var wl = new WordLibrary();
                    wl.Word = word;
                    if (IsWubi)
                    {
                        wl.AddCode(CodeType.Wubi, strs[0]);
                    }
                    wl.PinYin = CollectionHelper.ToArray(list);
                    wlList.Add(wl);
                }
            }
            return wlList;
        }
開發者ID:yongsun,項目名稱:imewlconverter,代碼行數:23,代碼來源:Jidian.cs

示例6: ImportLine

        //private IWordCodeGenerater pyGenerater=new PinyinGenerater();
        public WordLibraryList ImportLine(string line)
        {
            string[] lineArray = line.Split('\t');

            string word = lineArray[0];
            string code = lineArray[1];
            var wl = new WordLibrary();
            wl.Word = word;
            wl.Count = Convert.ToInt32(lineArray[2]);
            if (CodeType == CodeType.Pinyin)
            {
                wl.PinYin = code.Split(new[] {' '}, StringSplitOptions.RemoveEmptyEntries);
            }
            else
            {
                //wl.PinYin = CollectionHelper.ToArray(pyGenerater.GetCodeOfString(wl.Word));
                wl.AddCode(CodeType, code);
            }

            var wll = new WordLibraryList();
            wll.Add(wl);
            return wll;
        }
開發者ID:yongsun,項目名稱:imewlconverter,代碼行數:24,代碼來源:Rime.cs


注:本文中的Studyzy.IMEWLConverter.Entities.WordLibrary.AddCode方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。