如何在正则表达式替换中用该字符串的填充版本替换数字字符串?

发布于 2024-09-03 00:23:16 字数 65 浏览 5 评论 0原文

我有一串 4 或 5 位数字长的数字,需要用“0”填充,直到它达到 6 位数字长。这可能吗?我正在使用.Net框架。

I've got a string of digits that is either 4 or 5 digits long and it needs to be padded with "0" till it's 6 digits long. Is this possible? I'm using .Net framework.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

仙女山的月亮 2024-09-10 00:23:16

您不需要正则表达式来执行此操作。您可以使用 string.PadLeft

s = s.PadLeft(6, '0');

如果您需要使用正则表达式(可能是因为您正在执行一些更复杂的替换,这只是其中的一小部分),那么您可以使用 MatchEvaluator 与上述技术相结合:

string s = "foo <12423> bar";
s = Regex.Replace(s, @"<(\d+)>", match => match.Groups[1].Value.PadLeft(6, '0'));

结果:

foo 012423 bar

You don't need a regular expression to perform this operation. You can use string.PadLeft:

s = s.PadLeft(6, '0');

If you need to use regular expression (perhaps because you are performing some more complex replacement of which this is just a small part) then you can use a MatchEvaluator in combination with the above technique:

string s = "foo <12423> bar";
s = Regex.Replace(s, @"<(\d+)>", match => match.Groups[1].Value.PadLeft(6, '0'));

Result:

foo 012423 bar
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文