.dic line format definition

I am currently studying the most suitable dictionary for use in the application that I am creating.

By checking the dictionaries that are associated with Sublime Text 2, the file format is as you would expect - a list of alphabetically ordered words. However, many of these words contain additional information. Take this snippet as an example:

abaft
abbreviation/M
abdicate/DNGSn
Abelard/M
abider/M
Abidjan
ablaze
abloom
aboveground
abrader/M
Abram/M
abreaction/MS
abrogator/MS
abscond/DRSG
absinthe/MS
absoluteness/S
absorbency/SM
abstract/ShTVDPiGY
absurdness/S

A barren Google search does not shed light on what the letters after the slash (/) mean.

Perhaps they hint at the floor of this word, but this is only an assumption, and I would rather read the official explanation of their meaning.

Has anyone come across them?

+5
source share
2

, , . , .

, .

, aspell.

+5

TL;DR: .dic .aff.

https://superuser.com/a/633869/367530

.aff . : SFX PFX . PFX/SFX (, :

PFX [rule_letter_identifier] [combineable_flag] [number_of_rule_lines_that_follow]

, Y N , . (), . :

PFX [rule_letter_identifier] [number_of_letters_to_delete] [what_to_add] [when_to_add_it]

:

  • SFX BY 3
  • SFX B 0 able [^aeiou]
  • SFX B 0 able ee
  • SFX B e able [^aeiou]e

B - , , someword/B, , . ( ). :

  • able , ( ^) ( [ ]) a, e, i, o u. , →
  • , ee. , → .
  • , ([^aeiou]), [^aeiou] e. e ( ). , → .

PFX , .

+3

Source: https://habr.com/ru/post/1502624/


All Articles