RosettaCodeData/Task/Validate-International-Securities-Identification-Number/PowerShell/validate-international-securities-identification-number-2.psh
2023-07-01 13:44:08 -04:00

6 lines
200 B
Text

"US0378331005","US0373831005","US0337833103","AU0000XVGZA3","AU0000VXGZA3","FR0000988040" | ForEach-Object {
[PSCustomObject]@{
ISIN = $_
IsValid = Test-ISIN -Number $_
}
}