Hi,
I am requiring to output a 2 digit country code based on a country.
Array would be something like
$array += [[[[Austria],[AU]],[[Brazil],[BZ]]]]
So i would expect it to be something like
if ($array -match 'Brazil'){ it returns BZ}
What would be the best way of going about that?
Thanks for help