c#對字串操作的技巧小結

來源:互聯網
上載者:User


字串是由類定義的,如下
1 public sealed class String : IComparable, ICloneable, IConvertible, IComparable<string>, IEnumerable<char>, IEnumerable, IEquatable<string>
注意它從介面IEnumerable<char>派生,那麼如果想得到所有單個字元,那就簡單了,
1 List<char> chars = s.ToList();
如果要對字串進行統計,那也很簡單:
1 int cn = s.Count(itm => itm.Equals('{'));
如果要對字串反轉,如下:
1 new string(s.Reverse().ToArray());
如果對字串遍曆,那麼使用擴充方法ForEach就可以了。
現在有一個需求 ,對一個list的字串,我想對滿足某些條件的進行替換,不滿足條件的保留下來。問題來了,在forach的時候不能對字串本身修改。因為msdn有如下的描述:
A String object is called immutable (read-only) because its value cannot be modified once it has been created. Methods that appear to modify a String object actually return a new String object that contains the modification.
所以如下代碼其實是構造了兩個字串:
1 string st = "Hello,world";
2 st = "Hello,world2";
回到那個問題,我想一個很簡單的方法是先構造一個List<string>,然後對原字串遍曆 ,滿足條件的修改後加入新的list,不滿足的直接加入。這種方法很簡單原始,效率也是最高的。Linq裡面有UNION這個關鍵字,sql裡面也有UNION這個集合操作,那麼把它拿來解決這個問題如下: 複製代碼 代碼如下:   private List<String> StringCleanUp(List<string> input)
   {
   Regex reg = new Regex(@"\<(\w+)\>(\w+?)\</\1\>", RegexOptions.Singleline);
  
   var matchItem = (
   from c in input
   where reg.IsMatch(c)
   select reg.Replace(c, matchEvaluator)
   ).Union(
   from c in input
   where !reg.IsMatch(c)
   select c
   );
  
   return matchItem.ToList<string>();
   }
  
   private string matchEvaluator(Match m)
   {
   return m.Groups[2].Value;
   }

以上是用Regex進行匹配,如果匹配,用匹配的組2的資訊替換原資訊。如果不匹配,使用原字串。
如果問題敬請指出。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.