I'm doing some refactoring on a piece of code I have, and am thinking of moving some stuff from the model into helper methods.
Nothing major, but my model does some screen-scrapping, and I need to treat (and filter) some of the strings returned, so they are passed back to the controller nicely formatted.
I've been using helper methods with my view already.
My question is, is it a good practice to use helper methods with the model, or should I simply add my string cleaning methods in the model itself?
Thanks in advance