Supondo que todas as linhas começam com Book que precisam de acréscimo de texto enquanto as outras linhas não começam com Book, o seguinte regex pode ser usado:
Pesquisar por: (^Book \d.+$)
Substitua por: $1 ###
Explicação:
( ) = Capture group. Everything it finds is stored as $1
^ = This must occur at the start of the line.
Book = Match the word Book, followed by a space
\d = The next character(s) must be a digit.
.+ = The next characters must be anything
$ = Until the end of the line is reached.
Ao substituí-lo por $ 1 seu texto, o mesmo texto será anexado a todas as linhas que começarem com o número do livro.