Hello! Understanding Perl, help with sorting ...
The following code:
open(FILE,"<file"); @text = <FILE>; chomp(@text); close(FILE);
Each line in the file is the data written through the separator "|"
i.e.
фио|адрес|телефон| фио|адрес|телефон|
It is necessary to sort by name, and there can be both Russian and English characters. Thank!