Searching for ALL CAPS

Eric

Beta Tester
Messages
895
Hi, is there a way to search for ALL CAPITAL LETTERS (UPPERCASE)? I am pretty sure it could be done via the character string search or RegEx search, but I do not know how.

Can someone help me out?

Thank you!
 
Hi, is there a way to search for ALL CAPITAL LETTERS (UPPERCASE)? I am pretty sure it could be done via the character string search or RegEx search, but I do not know how.

Can someone help me out?

Thank you!
Just curious... What are trying to search for?

You might try using "X" ~ "JESUS IS LORD" - Under normal search you could try "Find verses with exact PHRASE specified" coupled with "Match case" or "Character string search" + "Match case"... Just a thought.
 
Hi, is there a way to search for ALL CAPITAL LETTERS (UPPERCASE)? I am pretty sure it could be done via the character string search or RegEx search, but I do not know how.

Can someone help me out?

Thank you!

There's two things you could mean by this. If you know the words you want to search for, you can switch on case sensitivity and do it that way:

1745674206937.png


But I assume your question is actually how to see all of the all-caps words.

The best way is to use a RegEx search that specifies two or more capital letters.

1745674524185.png


There are other valid RegExes that could get you the same results.

You can click the Search Info and Stats button to see what words were matched:

1745674671985.png


1745674705110.png
 
I think this is a better one:

(?! )\b[A-Z ']{2,}\b(?<! )


  • Assert that it is impossible to match the regex below starting at this position (negative lookahead)
    • Match the character “ ” literally
  • Assert position at a word boundary (position preceded or followed—but not both—by a letter, digit, or underscore in the active code page)
  • Match a single character present in the list below
    • Between 2 and unlimited times, as many times as possible, giving back as needed (greedy)
    • A character in the range between “A” and “Z” (case sensitive)
    • A single character from the list “ '”
  • Assert position at a word boundary (position preceded or followed—but not both—by a letter, digit, or underscore in the active code page)
  • Assert that it is impossible to match the regex below ending at this position (negative lookbehind)
    • Match the character “ ” literally

1745676358716.png



1745676378967.png



Matching Strings:

StringMatch Count
LORD6166
GOD305
O LORD295
LORD'S108
JESUS4
LORD I3
MENE3
O GOD3
BRANCH2
HOLINESS TO THE LORD2
JEHOVAH2
LORD JEHOVAH2
TEKEL2
AIN1
ALEPH1
AND LORD OF LORDS1
BABYLON THE GREAT1
BETH1
CAPH1
CHETH1
DALETH1
GIMEL1
HE1
HOLINESS UNTO THE LORD1
I AM1
I AM THAT I AM1
JAH1
JESUS OF NAZARETH THE KING OF THE JEWS1
JOD1
KING OF KINGS1
KOPH1
LAMED1
MEM1
MYSTERY1
NUN1
PE1
PERES1
RESH1
SAMECH1
SCHIN1
TAU1
TETH1
THE KING OF THE JEWS1
THE LORD OUR RIGHTEOUSNESS1
THE LORD THY GOD1
THE MOTHER OF HARLOTS AND ABOMINATIONS OF THE EARTH1
THIS IS JESUS THE KING OF THE JEWS1
THIS IS THE KING OF THE JEWS1
TO THE UNKNOWN GOD1
TZADDI1
UPHARSIN1
VAU1
ZAIN1
 
I think this is a better one:

(?! )\b[A-Z ']{2,}\b(?<! )


  • Assert that it is impossible to match the regex below starting at this position (negative lookahead)
    • Match the character “ ” literally
  • Assert position at a word boundary (position preceded or followed—but not both—by a letter, digit, or underscore in the active code page)
  • Match a single character present in the list below
    • Between 2 and unlimited times, as many times as possible, giving back as needed (greedy)
    • A character in the range between “A” and “Z” (case sensitive)
    • A single character from the list “ '”
  • Assert position at a word boundary (position preceded or followed—but not both—by a letter, digit, or underscore in the active code page)
  • Assert that it is impossible to match the regex below ending at this position (negative lookbehind)
    • Match the character “ ” literally

View attachment 2584


View attachment 2585


Matching Strings:

StringMatch Count
LORD6166
GOD305
O LORD295
LORD'S108
JESUS4
LORD I3
MENE3
O GOD3
BRANCH2
HOLINESS TO THE LORD2
JEHOVAH2
LORD JEHOVAH2
TEKEL2
AIN1
ALEPH1
AND LORD OF LORDS1
BABYLON THE GREAT1
BETH1
CAPH1
CHETH1
DALETH1
GIMEL1
HE1
HOLINESS UNTO THE LORD1
I AM1
I AM THAT I AM1
JAH1
JESUS OF NAZARETH THE KING OF THE JEWS1
JOD1
KING OF KINGS1
KOPH1
LAMED1
MEM1
MYSTERY1
NUN1
PE1
PERES1
RESH1
SAMECH1
SCHIN1
TAU1
TETH1
THE KING OF THE JEWS1
THE LORD OUR RIGHTEOUSNESS1
THE LORD THY GOD1
THE MOTHER OF HARLOTS AND ABOMINATIONS OF THE EARTH1
THIS IS JESUS THE KING OF THE JEWS1
THIS IS THE KING OF THE JEWS1
TO THE UNKNOWN GOD1
TZADDI1
UPHARSIN1
VAU1
ZAIN1
Brandon, thank you very much! This search gives exactly what I was looking for.
Eric
 
Back
Top