Module: ScientificNameClean::ValidNameLetter0
- Defined in:
- lib/biodiversity/parser/scientific_name_clean.rb
Instance Method Summary collapse
Instance Method Details
#value ⇒ Object
7881 7882 7883 7884 7885 7886 7887 |
# File 'lib/biodiversity/parser/scientific_name_clean.rb', line 7881 def value res = text_value res = "ae" if res == "æ" res = "oe" if res == "œ" res = "e" if res == "ë" res end |