gpt4 book ai didi

linq - 在C#中使用Linq进行字符串替换

转载 作者:行者123 更新时间:2023-12-04 06:27:05 25 4
gpt4 key购买 nike


public class Abbreviation
{
public string ShortName { get; set; }
public string LongName { get; set; }
}

我有一个这样的缩写对象列表:

List abbreviations = new List();
abbreviations.add(new Abbreviation() {ShortName = "exp.", LongName = "expression"});
abbreviations.add(new Abbreviation() {ShortName = "para.", LongName = "paragraph"});
abbreviations.add(new Abbreviation() {ShortName = "ans.", LongName = "answer"});

string test = "this is a test exp. in a para. contains ans. for a question";

string result = test.Replace("exp.", "expression")
...

我希望结果是:
“这是一个段落中的测试表达式,其中包含问题的答案”

目前我正在做:

foreach (Abbreviation abbreviation in abbreviations)
{
test = test.Replace(abbreviation.ShortName, abbreviation.LongName);
}
result = test;

想知道是否有结合使用Linq和Regex的更好的方法。

最佳答案

如果您确实想缩短代码,则可以在ForEach上使用List扩展方法:

abbreviations.ForEach(x=> test=test.Replace(x.ShortName, x.LongName));

关于linq - 在C#中使用Linq进行字符串替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5137514/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com