本文介绍了找到描述中的所有关键字列表,并将其替换为大写版本。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我收到了一个长文本'描述'和一个关键字列表。我的任务是找到描述中的所有关键字,并用大写版本替换它们。返回转换后的描述文本将所有关键字都大写。我发现难以使用linq在列表中搜索。
我尝试过:
I am given a long text 'description' and a list of keywords. My task is to find all the keywords in the description and replace them with their uppercase version. Return the transformed description text will all the keywords in uppercase. I find difficulty is searching through the list using linq.
What I have tried:
<pre>public static string UpperCaseAllTheKeywords(string description, string[] keywords)
{
return description.Split(' ').SelectMany(x => x.ContainsAny(keywords) ? x.ReplaceAll(keywords.Select(i => i), keywords.Select(i => i.ToUpper()) : x).ToString();
}
推荐答案
public static string UpperCaseAllTheKeywords(string description, string[] keywords)
{
keywords.ToList().ForEach(k => description = description.Replace(k, k.ToUpper()));
return description;
}
// or
public static string UpperCaseAllTheKeywords(string description, string[] keywords)
{
List<string> lst = new List<string> ();
description.Split(' ').ToList().ForEach(k => lst.Add( keywords.Contains(k) ? k.ToUpper() :(k)));
return string.Join(" ",lst);
}
这篇关于找到描述中的所有关键字列表,并将其替换为大写版本。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!