How to divide content into pages?

I want to divide my post content into pages. This should be done in a situation, when a post is very long and I would like to decide, when to break the page. Do you know how to do this?

I’m using tinyMCE for content creation.

Is there anyone who can give me a clue? I need to divide one post into few pages. How can i achieve that without additional table for parts (pages) of a post?

Well when you get the post from the db, you can check the length of the text and then create a pagination with CPagination if needed. Requires a little work, for example a "cut" may only happen each 500 chars but only after a complete sentence.

you have to add a separator in your content, parse your content and build a navigation around it

Yes, I can go this way. I used to use some separator and parse the content, but i thought there is some better solution. I would like to be able to go to specific page of my post using something like: www.mypage.com/post/1/3 where 3 stands for 3rd page of my post. Can I achieve that using separator and/or CPagination?