Findind a word at the end of the line

G

Guest

I want to know hot find the letter n where it appears at the end of a line in
a fully justified document, before a hard return or a soft return.

Appreciate your help.
 
H

Herb Tyson [MVP]

Ctrl+F... set Find what:n^p for a paragraph return or n^l for a line break
(sometimes called a soft return). You might want to enable Match Case.

Or... you can do it with one command if you want to enable wildcards:

Find what:n[^13^11]

Use wildcards must be enabled, and all text is case-specific when wildcards
are enabled, so "n" gets you the lowercase n. If you want upper or lower,
you'd need [nN] instead of n.

where ^13 matches a paragraph mark, and ^11 matches a line break.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top