words = self.tag.split
words.each { |word| word = word.stem }
self.tag = words.join(' ')
For a given sentence I want to perform the stem action on each individual word.
Is there a way to simplify this code?
For a given sentence I want to perform the Is there a way to simplify this code? |
||||
|
|
|
|||||
|
Not that I necessarily recommend doing so. |
|||||||||
|