使用LINQ 高效連接字串
連接字串的傳統方法涉及使用StringBuilder 和循環,如給定的程式碼片段所示。雖然這種方法很有效,但對於大型資料集來說可能會很冗長且效率低。 LINQ 為此任務提供了更簡潔且可能更快的解決方案。
使用LINQ 的Aggregate 方法,我們可以如下連接字串:
string[] words = { "one", "two", "three" }; var res = words.Aggregate( "", // Start with an empty string for the empty list case (current, next) => current + ", " + next); Console.WriteLine(res);
此表達式透過組合每個元素建立一個新字串包含逗號和空格的單字數組。與大多數其他 LINQ 操作中的延遲執行不同,聚合查詢會立即執行。
此方法的另一個變體涉及在Aggregate 方法中使用StringBuilder 以提高記憶體效率:
var res = words.Aggregate( new StringBuilder(), (current, next) => current.Append(current.Length == 0? "" : ", ").Append(next)) .ToString();
此變體提供與String.Join 類似的效能,這是有效連接字串的另一種選擇。
以上是LINQ如何提高字串串聯效率?的詳細內容。更多資訊請關注PHP中文網其他相關文章!