Limiting the number of characters in the except

By default character length for excerpt is 55.Just use this code instead.For more details refer to codex

function new_excerpt_more( $length ) {
    return 100;
}
add_filter( 'excerpt_length', 'new_excerpt_more', 999 );