add_filter('excerpt_length', 'custom_excerpt_length');
/**
* Modify length of post excerpts
*
* @author Brian Gardner
* @link http://dev.studiopress.com/modify-post-excerpts.htm
*/
function custom_excerpt_length($length) {
return 100; // pull first 100 words
}

add_filter( 'excerpt_more', 'add_excerpt_more' );
/**
* Add Read More to end of post excerpt.
*
* @author Brian Gardner
* @link http://dev.studiopress.com/add-read-more.htm
*/
function add_excerpt_more( $more ) {
return ' {...Read More...} ';
}

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/v73aUcw-Y0g/13527