3588【前端】【主干】传给猫耳的验证信息需分割出游戏内的特殊标志
| | |
| | | AddMathcs(WordAnalysis.Size_End_Regex.Matches(content));
|
| | | AddMathcs(WordAnalysis.Space_Regex.Matches(content));
|
| | | AddMathcs(ChatCtrl.KillRegex.Matches(content));
|
| | | AddMathcs(ChatCenter.s_VoiceRegex.Matches(content));
|
| | | matchs.Sort((x, y) =>
|
| | | {
|
| | | return x.index.CompareTo(y.index);
|
| | |
| | | content = WordAnalysis.Size_End_Regex.Replace(content, TransferIdentify);
|
| | | content = WordAnalysis.Space_Regex.Replace(content, TransferIdentify);
|
| | | content = ChatCtrl.KillRegex.Replace(content, TransferIdentify);
|
| | | content = ChatCenter.s_VoiceRegex.Replace(content, TransferIdentify);
|
| | | return content;
|
| | | } |
| | | |