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

[代码收集]将字符串中字符按大写字母隔开

时间:2015-11-28 23:10:22      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

        /// <summary>
        /// Splits pascal case, so "FooBar" would become "Foo Bar"
        /// </summary>
        public static string SplitPascalCase(this string input)
        {
            if (string.IsNullOrEmpty(input))
            {
                return input;
            }
            return Regex.Replace(input, "([A-Z])", " $1").Trim();
        }

 

[代码收集]将字符串中字符按大写字母隔开

标签:

原文地址:http://www.cnblogs.com/Rmean/p/5003630.html

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