上传者: 38553791
|
上传时间: 2021-10-24 15:45:45
|
文件大小: 27KB
|
文件类型: -
实例如下:
public string unicodetogb(string text)
{
System.Text.RegularExpressions.MatchCollection mc = System.Text.RegularExpressions.Regex.Matches(text, "\\\\u([\\w]{4})");
if (mc != null && mc.Count > 0)
{
foreach (System.Text.RegularExpressions.Match m2 in mc)
{