zoukankan      html  css  js  c++  java
  • C#替换字符串起始/结尾指定的字符串

         #region 替换字符串起始位置(开头)中指定的字符串
            /// <summary>  
            /// 替换字符串起始位置(开头)中指定的字符串  
            /// </summary>  
            /// <param name="s">源串</param>  
            /// <param name="searchStr">查找的串</param>  
            /// <param name="replaceStr">替换的目标串</param>  
            /// <returns></returns>  
            public static string CutStarStr(string s, string searchStr, string replaceStr)
            {
                var result = s;
                try
                {
                    if (string.IsNullOrEmpty(result))
                    {
                        return result;
                    }
                    if (s.Length < searchStr.Length)
                    {
                        return result;
                    }
                    if (s.IndexOf(searchStr, 0, searchStr.Length, StringComparison.Ordinal) > -1)
                    {
                        result = s.Substring(searchStr.Length);
                    }
                    return result;
                }
                catch (Exception e)
                {
                    return result;
                }
            }
            #endregion
    
            #region 替换字符串末尾位置中指定的字符串
            /// <summary>  
            /// 替换字符串末尾位置中指定的字符串  
            /// </summary>  
            /// <param name="s">源串</param>  
            /// <param name="searchStr">查找的串</param>  
            /// <param name="replaceStr">替换的目标串</param>  
            public static string CutEndStr(string s, string searchStr, string replaceStr)
            {
                var result = s;
                try
                {
                    if (string.IsNullOrEmpty(result))
                    {
                        return result;
                    }
                    if (s.Length < searchStr.Length)
                    {
                        return result;
                    }
                    if (s.IndexOf(searchStr, s.Length - searchStr.Length, searchStr.Length, StringComparison.Ordinal) > -1)
                    {
                        result = s.Substring(0, s.Length - searchStr.Length);
                    }
                    return result;
                }
                catch (Exception e)
                {
                    return result;
                }
            }
            #endregion
      

    上海.NET招聘:上海.NET招聘

    郑州.NET招聘:郑州.NET招聘

    深圳.NET招聘:深圳.NET招聘

  • 相关阅读:
    jQuery.extend
    Topshelf便捷创建Windows服务
    cron表达式
    定时调度框架:Quartz.net
    sqlserver自定义函数
    HTML dom document 对象
    正则表达式之 数据验证 与 文本替换
    JavaScript 之 DOM 与 BOM
    CSS 之pseudo-classes 与pseudo-element的异同
    CSS中的 position与Grid Layout
  • 原文地址:https://www.cnblogs.com/romanticcrystal/p/6370261.html
Copyright © 2011-2022 走看看