in reply to I want to Split html pages

How can you do that? Step by step.

In the beginning you have to find some rules on how to split your HTML files. Surely you don't want to do that completely randomly, but in way that makes sense for your application.

The tools for splitting strongly depend on the splitting criteria, so we really can't recommend anything useful without knowing these criteria.

Replies are listed 'Best First'.
Re^2: I want to Split html pages
by chandchv (Initiate) on Nov 12, 2008 at 18:07 UTC
    Hi Moritz, I have to add certian place holders on top of the components in the page so that my perl knows where to start and where to end extracting the htm snippet, they would be replaced by tag ssi includes for that snippet in the body of the page, after extraction of the components so that the Apache can process those snippets. but my problem is how to dynamicaly extract those snippets and save them in different files thanks again
      You can probably search and replace with regular expressions. Or you can split it into pieces. But how exactly that works depends on how your markers look like.

      Since you didn't provide any sample data but just a hand-waving description, the answer can only be equally hand-waving.