Regex.Replace()

作者:追风剑情 发布于:2014-8-6 16:30 分类:C#

开发工具 Visual Studio 2010

  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4. namespace RegularExpressionsTest
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. string pattern = @"[,\s]+";
  11. string replacement = ",";
  12. string input = "test1,test2 test3 test4,,test5, test6 ,test7 test8,,,test9,, ,test10";
  13. string result = Regex.Replace(input, pattern, replacement);
  14. Console.WriteLine(result);
  15.  
  16. Console.ReadLine();
  17. }
  18. }
  19. }

运行输出

输出结果.png

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号