And yet you did not post the answer you found.
string host = pst.Split('\n')[14];
array [b]explode[/b](string [i]$delimiter[/i], string [i]$string[/i][, int [i]$limit[/i]])
<?php
// Yes, I know this is giving a man a fish.
$host = "{$explode("\n", $string)[14]}"
?>
<?php
// Yes, I know this is giving a man a fish.
$host = "{$explode("\n", $string)[14]}"
?>
<?php
$host = explode("\n", $string, 14)
?>
<?php
$host = explode("\n", $string, 14)
?>
<?php
$array = explode("\n", $string);
$host = $array[14];
?>
<?php
$ExtraCountriesLFS = array (
'England',
'Northern Ireland',
'Scotland',
'Wales',
'Kosovo',
);
?>
<?php
$ExtraCountriesLFS = array (
'England',
'Northern Ireland',
'Scotland',
'Wales',
'Kosovo',
);
?>