在 C# 中是否有任何方法可以截断字符串的一部分直到遇到第一个数字?
我想知道C#中是否有任何方法可以取出字符串的所有内容,直到遇到第一个数字。例子:
string myString = "USD3,000";
myString = SomeMethod(myString, [someparameters]);
myString -> "3,000"
I would like to know whether there is any method in C# that takes out all the content of a string until the first number is encountered. Example:
string myString = "USD3,000";
myString = SomeMethod(myString, [someparameters]);
myString -> "3,000"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
不是内置的,但您可以使用正则表达式或
IndexOfAny
:或
Not inbuilt, but you could just use either a regex, or
IndexOfAny
:or
我认为没有任何内置的字符串方法可以做到这一点。但是,您可以调整下面帖子中给出的代码并修改它以实现您想要的:
C#中确定字符串是否以数字开头然后获取所有后续数字直到第一个非数字的最有效方法是什么-数字字符?
I don't think there are any built-in string methods to do that. However you can tweak the code given in the below post and modify it to achieve what you want:
What is the most efficient way in C# to determine if a string starts with a number and then get all following numbers up until the first non-numeric character?
您可以使用正则表达式来做到这一点。
You can do it with Regular Expressions.
输出:
应匹配小数和整数,带或不带千位分隔符,以及最多 3 位小数。
Output:
Should match decimal and integer number with or without thousand separators and with or without maximum of 3 decimal places.