6

Does anybody know of an English verb inflector that I can use on a lexicon of verbs (in present-participle) that can give me other inflected forms of the verbs?

For example:

I give it     I get
=========     ======================================
run           ran, running, runs
sing          sang, singing, sings
play          played, playing, plays
Ken Bloom
  • 57,498
  • 14
  • 111
  • 168

3 Answers3

5

Morphg is a stand-alone tool which provides this functionality. The inverse, i.e. finding the lemma of a verb, is provided by its sister, Morpha.

ferdystschenko
  • 1,527
  • 1
  • 9
  • 18
2

CPAN's Lingua::EN::Inflect will give you the plural forms, as well as helping you pick between 'a' and 'an' and pretty-printing numbers.

Andrew Aylett
  • 39,182
  • 5
  • 68
  • 95
  • 1
    There's [`Lingua::EN::Conjugate`](https://metacpan.org/pod/Lingua::EN::Conjugate) now, which is more directly relevant. – scozy May 30 '14 at 13:48
1

MorphAdorner can do this in Java.

Ken Bloom
  • 57,498
  • 14
  • 111
  • 168