码迷,mamicode.com
首页 > Windows程序 > 详细

[C#]文字换行

时间:2014-12-15 19:03:13      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   for   

关键代码:

     #region 文字换行
        /// <summary>
        /// 文字换行
        /// <para>eg:StringHelper.WrapText("YanZhiwei", 3);==>"Yan\r\nZhi\r\nwei"</para>
        /// </summary>
        /// <param name="data">需要换行的文字</param>
        /// <param name="maxWidth">多少长度换行</param>
        /// <returns>换行好的文字</returns>
        public static string WrapText(this string data, int maxWidth)
        {
            int _stringCount = data.Length;
            if (maxWidth > 0 && _stringCount > maxWidth)
            {
                StringBuilder _builderString = new StringBuilder(data);
                int _breakCount = _builderString.Length / maxWidth;
                for (int i = 0; i < _breakCount; i++)
                {
                    int _insertPosition = i * maxWidth;
                    if (_insertPosition != 0)
                    {
                        int _offset = (i - 1) * 2;//(\r\n)
                        _builderString.Insert(_insertPosition + _offset, Environment.NewLine);
                    }

                }
                return _builderString.ToString();
            }
            else
            {
                return data;
            }
        }
        #endregion

测试:

        [TestMethod()]
        public void WrapTextTest()
        {
            string _actual = StringHelper.WrapText("YanZhiwei", 3);
            Assert.AreEqual<string>(@"Yan
Zhi
wei", _actual);
        }

结果:

bubuko.com,布布扣

希望有所帮助!

[C#]文字换行

标签:style   blog   http   io   ar   color   os   sp   for   

原文地址:http://www.cnblogs.com/Yan-Zhiwei/p/4165349.html

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