gpt4 book ai didi

c# - 从字符串中获取第一个数字

转载 作者:IT王子 更新时间:2023-10-29 04:40:05 24 4
gpt4 key购买 nike

如何从字符串中获取第一个数字?

例子:我有“1567438absdg345”

我只想获得没有“absdg345”的“1567438”,我希望它是动态的,获得字母索引的第一次出现并删除它之后的所有内容。

最佳答案

您可以使用TakeWhile 扩展方法从字符串中获取字符,只要它们是数字即可:

string input = "1567438absdg345";

string digits = new String(input.TakeWhile(Char.IsDigit).ToArray());

关于c# - 从字符串中获取第一个数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9080492/

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