这应该有效,您应该替换$data
从 AWS 获得的输出。
$data = @'
C2-123-1.JPG
C2-123-2.JPG
C2-123-3.JPG
C3-333-1.JPG
C3-333-2.JPG
C3-333-4.JPG
C3-333-999.JPG
C3-456-2.JPG
C3-111-2.JPG
C3-999-4.JPG
'@ -split '\r?\n'
- 首先,按最后一个
-
和.jpg
扩展名之间的数字分组:
Count Name Group
----- ---- -----
2 1 {C2-123-1.JPG, C3-333-1.JPG}
4 2 {C2-123-2.JPG, C3-333-2.JPG, C3-456-2.JPG, C3-111-2.JPG}
1 3 {C2-123-3.JPG}
2 4 {C3-333-4.JPG, C3-999-4.JPG}
1 999 {C3-333-999.JPG}
- 然后得到
Group
数组的最大元素个数
- 最后,使用
while
循环$max
作为对 cast 的引用[pscustomobject]
# Group the files
$groups = $data | Group-Object {
[regex]::Match(
$_,
'(?i)(?<=\d-)(?<imagenum>\d+)\.jpg$'
).Groups['imagenum'].Value
}
# Determine max number of elements
$max = $groups.Count | Measure-Object -Maximum
$index = 0
# Construct the object
$result = while($max.Maximum--)
{
$out = [ordered]@{}
$groups.ForEach({
$key = 'Image Link {0}' -f $_.Name
$out[$key] = $_.Group[$index]
})
[pscustomobject]$out
$index++
}
结果将是:
PS /> $result | Format-Table
Image Link 1 Image Link 2 Image Link 3 Image Link 4 Image Link 999
------------ ------------ ------------ ------------ --------------
C2-123-1.JPG C2-123-2.JPG C2-123-3.JPG C3-333-4.JPG C3-333-999.JPG
C3-333-1.JPG C3-333-2.JPG C3-999-4.JPG
C3-456-2.JPG
C3-111-2.JPG
要查看regex
说明,您可以使用https://regex101.com/r/kARr39/1