|
@ -34,11 +34,14 @@ namespace QYMessageCenter.Business |
|
|
|
|
|
|
|
|
#region PJZS
|
|
|
#region PJZS
|
|
|
{ |
|
|
{ |
|
|
var matchResult = Regex.Match(request.Content, @"(#\w+)\(Solution"); |
|
|
if (request.AppCode == "PJZS") |
|
|
if (matchResult.Success) |
|
|
|
|
|
{ |
|
|
{ |
|
|
var replaceStr = matchResult.Groups[1].Value; |
|
|
var matchResult = Regex.Match(request.Content, @"(#\w+)\(Solution"); |
|
|
request.Content = request.Content.Replace(replaceStr, string.Empty); |
|
|
if (matchResult.Success) |
|
|
|
|
|
{ |
|
|
|
|
|
var replaceStr = matchResult.Groups[1].Value; |
|
|
|
|
|
request.Content = request.Content.Replace(replaceStr, string.Empty); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
#endregion
|
|
|
#endregion
|
|
|