在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
复制代码 代码如下: //string strText = "1334677999";实现无重复 public static string qu(string lab) { string strResult = string.Empty; for (int intIdx = 0; intIdx < lab.Length; intIdx++) { if (strResult.IndexOf(lab.Substring(intIdx, 1)) < 0) { strResult += lab.Substring(intIdx, 1); } } return strResult; } |
请发表评论