public class Abbreviation
{
public string ShortName { get; set; }
public string LongName { get; set; }
}
字符串
我有一个这样的Abbreviable对象列表:
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的组合。
4条答案
按热度按时间dtcbnfnu1#
如果你真的想缩短你的代码,你可以在
List
上使用ForEach
扩展方法:字符串
iih3973s2#
你可以使用ForEach方法。另外,StringBuilder应该使你的字符串操作更有效:
字符串
0yycz8jy3#
试试这个
字符串
还是下面的那个
型
csga3l584#
var newList = someList.Select(s => s.Replace(“XX”,“1”)).ToList();