本文整理匯總了C#中CharSet.ExceptWith方法的典型用法代碼示例。如果您正苦於以下問題:C# CharSet.ExceptWith方法的具體用法?C# CharSet.ExceptWith怎麽用?C# CharSet.ExceptWith使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CharSet
的用法示例。
在下文中一共展示了CharSet.ExceptWith方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: GetCharClass
/// <summary>
/// 返回指定的字符類對應的字符類索引。
/// </summary>
/// <param name="charClass">要獲取字符類索引的字符類。</param>
/// <returns>字符類對應的字符類索引。</returns>
public HashSet<int> GetCharClass(string charClass)
{
int cnt = charClassList.Count;
HashSet<int> result = new HashSet<int>();
CharSet set = GetCharClassSet(charClass);
if (set.Count == 0)
{
// 不包含任何字符類。
return result;
}
CharSet setClone = new CharSet(set);
for (int i = 0; i < cnt && set.Count > 0; i++)
{
CharSet cc = charClassList[i];
set.ExceptWith(cc);
if (set.Count == setClone.Count)
{
// 當前字符類與 set 沒有重疊。
continue;
}
// 得到當前字符類與 set 重疊的部分。
setClone.ExceptWith(set);
if (setClone.Count == cc.Count)
{
// 完全被當前字符類包含,直接添加。
result.Add(i);
if (cc.Count > 1)
{
// 記錄新字符類,以備之後修改。
charClassRecord[i].Add(result);
}
}
else
{
// 從當前的字符類中剔除被分割的部分。
cc.ExceptWith(setClone);
// 更新字符類。
int newCC = charClassList.Count;
result.Add(newCC);
charClassList.Add(setClone);
List<HashSet<int>> ccRecord = charClassRecord[i];
int ccrCnt = ccRecord.Count;
// 更新舊的字符類集合。
for (int j = 0; j < ccrCnt; j++)
{
ccRecord[j].Add(newCC);
}
// 添加新的字符類集合。
List<HashSet<int>> newRecord = null;
if (setClone.Count == 1)
{
charClassRecord.Add(null);
}
else
{
newRecord = new List<HashSet<int>>(ccRecord);
newRecord.Add(result);
charClassRecord.Add(newRecord);
}
}
// 重新複製 set。
setClone = new CharSet(set);
}
return result;
}