RosettaCodeData/Task/Brace-expansion/PowerShell/brace-expansion-2.ps1
2026-04-30 12:34:36 -04:00

14 lines
329 B
PowerShell

$TestStrings = @(
'It{{em,alic}iz,erat}e{d,}, please.'
'~/{Downloads,Pictures}/*.{jpg,gif,png}'
'{,{,gotta have{ ,\, again\, }}more }cowbell!'
'{}} some }{,{\\{ edge, edge} \,}{ cases, {here} \\\\\}'
)
ForEach ( $String in $TestStrings )
{
''
$String
'------'
Expand-Braces $String
}