Hi there,

here goes a short HU stop list SQL; it's tested and OK.
It is short because the hungarian grammar is inflective, e.g. while "me" 
is "én", "to me" is "nekem", etc., so a hungarian stop list will have a 
limited usefulness.

regards,

-- 
MURANYI Andras  -  [EMAIL PROTECTED]
Informaciotechnologiai Tanacsado - IT Advisor
IQ Consulting - http://www.iqconsulting.hu/
#  This is script for MySQL
# to create hungarian stop-list 
# note: hungarian has inflective grammar,
#  so your stop-list will have little use
# use: "mysql database <stop.hu.txt"
#

INSERT INTO stopword(lang, word) VALUES ('hu', 'a');
INSERT INTO stopword(lang, word) VALUES ('hu', 'az');
INSERT INTO stopword(lang, word) VALUES ('hu', 'egy');
INSERT INTO stopword(lang, word) VALUES ('hu', 'be');
INSERT INTO stopword(lang, word) VALUES ('hu', 'ki');
INSERT INTO stopword(lang, word) VALUES ('hu', 'le');
INSERT INTO stopword(lang, word) VALUES ('hu', 'fel');
INSERT INTO stopword(lang, word) VALUES ('hu', 'meg');
INSERT INTO stopword(lang, word) VALUES ('hu', 'el');
INSERT INTO stopword(lang, word) VALUES ('hu', 'át');
INSERT INTO stopword(lang, word) VALUES ('hu', 'rá');
INSERT INTO stopword(lang, word) VALUES ('hu', 'ide');
INSERT INTO stopword(lang, word) VALUES ('hu', 'oda');
INSERT INTO stopword(lang, word) VALUES ('hu', 'szét');
INSERT INTO stopword(lang, word) VALUES ('hu', 'össze');
INSERT INTO stopword(lang, word) VALUES ('hu', 'vissza');
INSERT INTO stopword(lang, word) VALUES ('hu', 'de');
INSERT INTO stopword(lang, word) VALUES ('hu', 'hát');
INSERT INTO stopword(lang, word) VALUES ('hu', 'és');
INSERT INTO stopword(lang, word) VALUES ('hu', 'vagy');
INSERT INTO stopword(lang, word) VALUES ('hu', 'hogy');
INSERT INTO stopword(lang, word) VALUES ('hu', 'van');
INSERT INTO stopword(lang, word) VALUES ('hu', 'lesz');
INSERT INTO stopword(lang, word) VALUES ('hu', 'volt');
INSERT INTO stopword(lang, word) VALUES ('hu', 'csak');
INSERT INTO stopword(lang, word) VALUES ('hu', 'nem');
INSERT INTO stopword(lang, word) VALUES ('hu', 'igen');
INSERT INTO stopword(lang, word) VALUES ('hu', 'mint');
INSERT INTO stopword(lang, word) VALUES ('hu', 'én');
INSERT INTO stopword(lang, word) VALUES ('hu', 'te');
INSERT INTO stopword(lang, word) VALUES ('hu', 'ő');
INSERT INTO stopword(lang, word) VALUES ('hu', 'mi');
INSERT INTO stopword(lang, word) VALUES ('hu', 'ti');
INSERT INTO stopword(lang, word) VALUES ('hu', 'ők');
INSERT INTO stopword(lang, word) VALUES ('hu', 'ön');

Reply via email to