gpt4 book ai didi

vb.net - 使用正则表达式从字符串开头删除数字

转载 作者:行者123 更新时间:2023-12-04 02:04:44 25 4
gpt4 key购买 nike

我正试图找到正确的正则表达式来只删除字符串开头的数字

>from
8012 name last name 123 456
6952332 name last 213 5695

>into
name last name 123 456
name last 213 5695

这不好,因为它匹配所有

 @"[\d-]"

最佳答案

您需要将您的模式锚定到字符串的开头 ^

string pattern = @"^[0-9]+";   // or @"^\d+";
string source = "8012 name last name 123 456";
string newText = Regex.Replace(source, pattern, "");

关于vb.net - 使用正则表达式从字符串开头删除数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26876246/

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