perl にファイル名があります。このファイルを JSON データに変換したい。それはperlで可能ですか?
sub conversion {
my($p)=@_;
my $f = $p->{file};
open(FIN,"</pathtofile/$f");
# now i want to convert this opened file into json
# something like encode_json(<FIN>);
# is that possible?
}
ファイル コンテンツのサンプル:
Header Name Type Altitude Depth
Waypoint 001 User N12 58.441 E77 32.647
Waypoint 002 User N13 00.503 E77 41.714
Waypoint 003 User N13 00.856 E77 42.054