single letter paragraphs

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to use wildcards to find single letter paragraphs? I can do
single letter words with <[A-Z]> (I only want capital letters), but I haven't
figured out a way to do it for paragraphs.

Thanks,
 
Not quite. That expression will find any paragraph mark preceded by a
single-character "word", including something like

Give me an A¶

That may be close enough, if your documents don't contain odd beasts
like the above. If not, try

^13[A-Za-z]^13

which finds any single letter (upper or lower case) between two
paragraph marks. This won't find the first paragraph of the document
(because there's no preceding paragraph mark), but that's easy to spot
manually.

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.

Got it, I think:

<[A-Z]>^13

Thanks,


--
tj


tjtjjtjt said:
Is there a way to use wildcards to find single letter paragraphs? I can do
single letter words with <[A-Z]> (I only want capital letters), but I haven't
figured out a way to do it for paragraphs.

Thanks,
 
Thanks, Jay. I did notice that I wasn't finding exactly what I was looking
for. I'll use your expression going forward.

--
tj


Jay Freedman said:
Not quite. That expression will find any paragraph mark preceded by a
single-character "word", including something like

Give me an A¶

That may be close enough, if your documents don't contain odd beasts
like the above. If not, try

^13[A-Za-z]^13

which finds any single letter (upper or lower case) between two
paragraph marks. This won't find the first paragraph of the document
(because there's no preceding paragraph mark), but that's easy to spot
manually.

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.

Got it, I think:

<[A-Z]>^13

Thanks,


--
tj


tjtjjtjt said:
Is there a way to use wildcards to find single letter paragraphs? I can do
single letter words with <[A-Z]> (I only want capital letters), but I haven't
figured out a way to do it for paragraphs.

Thanks,
 

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

Back
Top