After importing content from a legacy website using the Feeds module, I’m left with node bodies that contains links back to the old website.
Is there a Drupal module that will perform a one-time process to iterate through each node, manipulating the content of nodes using some custom code?
You could easily write a PHP script to step through the
node_revisionstable and do your processing there. If you’re comfortable with custom code, it’s probably the fastest way.