返回列表 发帖

[问题求助] PowerShell格式化数字补0

本帖最后由 5i365 于 2022-9-30 09:37 编辑

下面的代码, 我想让输出的结果中的数字问部分总是保留两位小数,即:不足两位的数字时前面加0,
期待输出后的效果:

01 A
02 b
09 e
10 f
16 g
$dd = @"
Chapter 1. A
Chapter 2. b
Chapter 9. e
Chapter 10. f
Chapter 16. g
"@
$dd -split '\n' |
%{
        if ($_ -match '.+\s+(\d{1,2})\.\s+(.+)')
        {
                '{0} {1}' -f $matches[1], $matches[2]
        }
}COPY
本人所发所有贴子或代码, 诸大侠若认为有改进之处,请不吝赐教,感激不尽!

本帖最后由 5i365 于 2022-9-30 09:36 编辑

已经解决:
$dd = @"
Chapter 1. A
Chapter 2. b
Chapter 9. e
Chapter 10. f
Chapter 16. g
"@
$dd -split '\n' |
%{
        if ($_ -match '.+\s+(\d{1,2})\.\s+(.+)')
        {
                $n = '{0:d2}' -f [int]$matches[1]
                '{0} {1}' -f $n, $matches[2]
        }
}COPY

或者:

$dd = @"
Chapter 1. A
Chapter 2. b
Chapter 9. e
Chapter 10. f
Chapter 16. g
"@
$dd -split '\n' |
%{
if ($_ -match '.+\s+(\d{1,2})\.\s+(.+)')
{
'{0} {1}' -f $matches[1].padleft(2, '0'), $matches[2]
}
}COPY
本人所发所有贴子或代码, 诸大侠若认为有改进之处,请不吝赐教,感激不尽!

TOP

返回列表