Linq 两个字符串搜索相同的组合

发布于 2024-10-30 17:30:41 字数 129 浏览 0 评论 0原文

我有两个字符串,

string a="1,2,3";

string b="2,4,6,7,8"

我想在两个字符串中搜索相同的数字。在 LINQ 中执行此操作的最佳方法是什么?

I have two strings

string a="1,2,3";

string b="2,4,6,7,8"

I want to search for the same number in both the strings. What is the best way to do it in LINQ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

卸妝后依然美 2024-11-06 17:30:41

此示例按字符串进行比较:

var chars = 
    from n1 in a.Split(',')
    join n2 in b.Split(',') on n1 equals n2
    select n1;

This example compare it string-wise though:

var chars = 
    from n1 in a.Split(',')
    join n2 in b.Split(',') on n1 equals n2
    select n1;
人│生佛魔见 2024-11-06 17:30:41

If you really want to compare the numbers, it is far easier to split the strings and use an extension method like Enumerable.Intersect.
If you want a more efficient method, you should look for implementations for retrieving the largest common substring between the two strings, like the one in Wikipedia. This way you avoid the cost of splitting and possible inefficiencies in the Enumerable.Intersect implementation. You will certainly find even more efficient implementations of LCS if you search.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文