Название 1 | http://toster.ru/adsfasrew
Название 2 | http://toster.ru/eqweqsafds
...
Название 10 | http://toster.ru/gdftgrwet
Array
(
[0] => Array
(
[name] => 'Название 1'
[link] => 'http://toster.ru/adsfasrew'
)
[1] => Array
(
[name] => 'Название 2'
[link] => 'http://toster.ru/eqweqsafds'
)
...
[9] => Array
(
[name] => 'Название 10'
[link] => 'http://toster.ru/gdftgrwet'
)
$rows = explode("\n", $text);
$result = array();
foreach($rows as $row) {
list($name, $link) = explode('|', $row);
$result[] = array('name' => trim($name), 'link' => trim($link));
}