gpt4 book ai didi

c# - C#中如何将字符串拆分为单词

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

如何将以下字符串拆分为单词

string exp=price+10*discount-30

进入

string[] words={'价格',discount' }

最佳答案

您可以使用正则表达式匹配单词,然后得到结果。

例子:

        // This is the input string.
string input = "price+10*discount-30";

var matches = Regex.Matches(input, @"([a-z]+)", RegexOptions.IgnoreCase | RegexOptions.Multiline);
foreach (var match in matches)
{
Console.WriteLine(match);
}
Console.ReadLine();

关于c# - C#中如何将字符串拆分为单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13821252/

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