码迷,mamicode.com
首页 > 其他好文 > 详细

c# 用正则表达式在指定的字符串中每隔指定个数的文字插入指定字符串

时间:2014-08-07 21:35:00      阅读:324      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   for   div   line   new   log   

        public static string AddNewLine(string inString,int num,string addString="\r\n")
        {
            return Regex.Replace(inString, string.Format(@".{{{0}}}", num), "$0"+addString);
        }

 

c# 用正则表达式在指定的字符串中每隔指定个数的文字插入指定字符串,布布扣,bubuko.com

c# 用正则表达式在指定的字符串中每隔指定个数的文字插入指定字符串

标签:style   blog   color   for   div   line   new   log   

原文地址:http://www.cnblogs.com/simadi/p/3897779.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!