gpt4 book ai didi

c# - 如何使用正则表达式从字符串的一部分中提取 "cut"?

转载 作者:太空狗 更新时间:2023-10-29 20:52:36 24 4
gpt4 key购买 nike

我需要在 C# 中剪切并保存/使用字符串的一部分。我认为最好的方法是使用正则表达式。我的字符串看起来像这样:

“从 1 变为 10”

我需要一种方法来截取这两个数字并在其他地方使用它们。执行此操作的好方法是什么?

最佳答案

作为练习检查左边的错误...

        Regex regex = new Regex( @"\d+" );
MatchCollection matches = regex.Matches( "changed from 1 to 10" );
int num1 = int.Parse( matches[0].Value );
int num2 = int.Parse( matches[1].Value );

关于c# - 如何使用正则表达式从字符串的一部分中提取 "cut"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/286964/

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