gpt4 book ai didi

c# - 在数字中查找特定数字

转载 作者:太空宇宙 更新时间:2023-11-03 19:48:42 25 4
gpt4 key购买 nike

我需要在数字中找到特定的数字。例如我有以下数字

156, 14, 28,34

我需要找出有多少个数字是 4

最佳答案

您只需要一个简单的Linq:

string source = "156, 14, 28,34";

// 2 since there're two numbers - 14, 34 which contain 4
int result = source
.Split(',')
.Count(number => number.Contains('4'));

如果给你一个数组int[]:

int[] source = new[] {156, 14, 28, 34};

// 2 since there're two numbers - 14, 34 which contain 4
int result = source
.Count(number => number.ToString().Contains('4'));

关于c# - 在数字中查找特定数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42360598/

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