RosettaCodeData/Task/Brace-expansion/PowerShell/brace-expansion-2.psh
2023-07-01 13:44:08 -04:00

14 lines
329 B
Text

$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
}