MARC::NDLSH::Simple -国会図書館件名標目(NDLSH)から簡単に情報を取り出す
use MARC::NDLSH::Simple;
# 件名標目形を出力 my @sh = MARC::NDLSH::Simple::NDLSH($any_term) print join " / ", @sh;
# 類似語(リンクしている件名標目形と参照形)を出力 my @st = MARC::NDLSH::Simple::SimmularTerms($any_term) print join " / ", @st;
# 関連語を出力 my @rt = MARC::NDLSH::Simple::RelatedTerms($any_term) print join " / ", @rh;
# 上位語を出力 my @bt = MARC::NDLSH::Simple::BroaderTerms($any_term) print join " / ", @bt;
# 下位語を出力 my @nt = MARC::NDLSH::Simple::NallowerTerms($any_term) print join " / ", @nt;
国会図書館の件名標目を扱うPerlモジュール``MARC::NDLSH''に対し、 より簡単な関数型のインターフェイスを提供します。
国会図書館件名標目の件名標目形を得る。結果は語彙の配列である。
類義語を得る。結果は語彙の配列である。
関連語を得る。結果は語彙の配列である。
上位語を得る。結果は語彙の配列である。
下位語を得る。結果は語彙の配列である。
次の関数がEXPORT可能です。
NDLSH()
SimmularTerms()
RelatedTerms()
BroaderTerms()
NallowTerms()
MARC::NDLSH
Akira Maeda<maeda@lib.u-tokyo.ac.jp>
Copyright (C) 2009 by Akira Maeda
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.