Find Bug - Need help...

G

Guest

I'm trying to search for acronyms that only have uppercase letters. I tried
using the Wildcard option enabled and I wouls use the pattern:

<[A-Z]*[A-Z]>

This search string would give me a phrase that starts with a capital letter
and end with a capital letter. For example, "This is a doG". It will
eventually give me the acronym, but with a lot of mis-hits.

Is there a way to make this search pattern only search for a single word?
 
K

Klaus Linke

Hi Jun,

Yes, * will match anything -- that's not a bug.

Try <[A-Z]{2,}> for words in capitals of two letters or longer.

If the "field separator" in Windows is a semicolon, use <[A-Z]{2;}>

Regards,
Klaus
 

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