我的输入文件(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