1. About AdvaS
2. Installation Guide
3. Usage Of AdvaS
4. AdvaS Function List
 -  4.1 calc_rsv
 -  4.2 calc_succ_variety
 -  4.3 category_get_root_node
 -  4.4 category_is_root_node
 -  4.5 category_is_leaf_node
 -  4.6 category_make_tree
 -  4.7 category_make_node
 -  4.8 category_split_string
 -  4.9 caverphone
 -  4.10 cmp_strings
 -  4.11 comp_descriptors
 -  4.12 comp_ngrams
 -  4.13 compact_list
 -  4.14 convert_dictionary_into_list
 -  4.15 convert_list_into_dictionary
 -  4.16 count_words
 -  4.17 get_file_contents
 -  4.18 get_ngrams
 -  4.19 idf
 -  4.20 is_comment
 -  4.21 is_language
 -  4.22 is_language_by_keywords
 -  4.23 is_synonym_of
 -  4.24 kmp_search
 -  4.25 kNN
 -  4.26 merge_lists
 -  4.27 merge_lists_idf
 -  4.28 metaphone
 -  4.29 ngram_stemmer
 -  4.30 nysiis
 -  4.31 phonetic_code
 -  4.32 rank
 -  4.33 remove_items
 -  4.34 soundex
 -  4.35 split_line
 -  4.36 successor_variety_stemmer
 -  4.37 synonym_of
 -  4.38 table_lookup_stemmer
 -  4.39 tf
 -  4.40 tf_stop
5. Information Retrieval Resources
6. Documentation
 
 table_lookup_stemmer
 
table_lookup_stemmer (term, stem_file)

Added in advas.0.0.2

Return the term's stem given in a stem file.

In: term a string
  stem_file filename of the stem file, given as a string
Out:   returns the stem according to the given term. If the term does not appear in the stem file an empty string ("") is returned. If the stem file cannot be accessed, an empty string is returned.

Each line of the stem file must have the format "term : stem". The stem file must be sorted in alphabetical order.