我的输入文件(csv)读取如下:
$recvCSV = Import-Csv $g_inputFile
,如下所示。地址栏指示MAC地址,我想保留前导零。
currentTime, SeqNum, Address, Location
1382393056692, 0,
1382393056860, 0, 38:1c:4a:0:8d:d
1382393057194, 1,
1382393057360, 1, 38:1c:4a:0:8d:d
我的输出应该是这样的:
38:1c:4a:00:8d:0d
这些是我尝试获得前导零:
$recvCSV | ? { $null, '' -notcontains $_.Address } | Group-Object Address | % { "{0:00 0:00 0:00 0:00 0:00 0:00}" -f $_.Name }
$recvCSV | ? { $null, '' -notcontains $_.Address } | Group-Object Address | % { "[string]::format "0:00 0:00 0:00 0:00 0:00 0:00", $_.Name }
$recvCSV | ? { $null, '' -notcontains $_.Address } | Group-Object Address | % { "0:00;0:00;0:00;0:00;0:00;0:00" -f $_.Name }
我提到了以下网站:
http://blog.stevex.net/string-formatting-in-csharp/
http://msdn.microsoft.com/en-us/library/fbxft59x.aspx
http://jdhitsolutions.com/blog/2012/01/format-leading-zeros-in-powershell/
请让我知道我做错了什么。
编辑: 我主要担心的是,如何确保将零插入正确的位置(90 vs 09)?我在下面给了几个样本。
38:1c:4a:__:8d:_d ==> 38:1c:4a:00:8d:0d
__:9_:4c:11:22:33 ==> 00:90:4c:11:22:33
答案 0 :(得分:1)
不是我写过的最漂亮的东西,但是:
$string = '38:1c:4a:0:8d:d'
($string.Split(':') |% {('0'+$_)[-2..-1] -join ''}) -join ':'
38:1c:4a:00:8d:0d
我认为这个更漂亮一点:
$string = '38:1c:4a:0:8d:d'
($string.Split(':').PadLeft(2,'0')) -join ':'
38:1c:4a:00:8d:0d
答案 1 :(得分:1)
只是为了好玩,这是使用正则表达式替换的另一个选项:
$string = '3:1c:4a:0:c:d'
$string -replace '(?<=:|^)([0-9a-f])(?=(:|$))','0$1'
03:1c:4a:00:0c:0d