really dumb question

A

Aryeh M. Friedman

I know if I just looked a little harder (been at it for an hour) I am
sure to find this:

How do I match (using regex's) contains nothing but uppercase
characters (no non -alpha, numbers, whitespace, etc.)
 
H

Haran Pilpel

Aryeh M. Friedman said:
How do I match (using regex's) contains nothing but uppercase
characters (no non -alpha, numbers, whitespace, etc.)

[A-Z]* should work.
 
S

Sherman Pendley

Haran Pilpel said:
Aryeh M. Friedman said:
How do I match (using regex's) contains nothing but uppercase
characters (no non -alpha, numbers, whitespace, etc.)

[A-Z]* should work.

This should work better, and match non-ASCII letters:

\p{Lu}+

sherm--
 

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

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top