Himall商城普通帮助类(三)

 ///


        /// 去除字符串首尾处的空格、回车、换行符、制表符
        ///

        public static string TBBRTrim(string str)
        {
            if (!string.IsNullOrEmpty(str))
                return str.Trim().Trim('\r').Trim('\n').Trim('\t');
            return string.Empty;
        }

        ///


        /// 去除字符串中的空格、回车、换行符、制表符
        ///

        public static string ClearTBBR(string str)
        {
            if (!string.IsNullOrEmpty(str))
                return _tbbrRegex.Replace(str, "");

            return string.Empty;
        }

        ///


        /// 删除字符串中的空行
        ///

        ///
        public static string DeleteNullOrSpaceRow(string s)
        {
        

你可能感兴趣的:(himall商城,java,javascript,服务器)