Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 308673
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T07:40:19+00:00 2026-05-12T07:40:19+00:00

I am trying to determine if a string has more than 1 capital letter

  • 0

I am trying to determine if a string has more than 1 capital letter in a row at the start of a string. I have the following regex but it doesn’t work:

`^[A-Z]{2,1000}`

I want it to return true for:

  • ABC
  • ABc
  • ABC ABC
  • ABc Abc

But false for:

  • Abc
  • AbC
  • Abc Abc
  • Abc ABc

I have the 1000 just because I know the value won’t be more than 1000 characters, but I don’t care about restricting the length.

I am working with PHP, if it makes any difference.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T07:40:19+00:00Added an answer on May 12, 2026 at 7:40 am

    Wouldn’t leaving the second one do it?

    ^[A-Z]{2,}
    

    Which basically says “string starts with 2 or more capital letters”

    Here’s some tests with the strings you provided that should match:

    >>> 'ABC'.match(/^[A-Z]{2,}/);
    ["ABC"]
    >>> 'ABc'.match(/^[A-Z]{2,}/);
    ["AB"]
    >>> 'ABC ABC'.match(/^[A-Z]{2,}/);
    ["ABC"]
    >>> 'ABc Abc'.match(/^[A-Z]{2,}/);
    ["AB"]
    

    And then the ones it shouldn’t match for:

    >>> 'Abc'.match(/^[A-Z]{2,}/);
    null
    >>> 'AbC'.match(/^[A-Z]{2,}/);
    null
    >>> 'Abc Abc'.match(/^[A-Z]{2,}/);
    null
    >>> 'Abc ABc'.match(/^[A-Z]{2,}/);
    null
    

    If you only want to match the first two, you can just do {2}

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to determine the width of a string. I'm using the following code
I'm trying to determine the regular expression to verify that a string has at
I'm trying to write a function that is able to determine whether a string
I am trying to determine what environmental or other factors have an influence on
I'm trying to determine if a string is latin based or Japanese. I've tried
I have this entity - I'm trying to determine the type of its properties
I'm trying to find a way to determine how many parameters a constructor has.
I need to build a Regex (.NET syntax) to determine if a string ends
I am trying to determine if every character in my string is alphanumeric. My
I'm trying to diff two strings to determine whether or not they solely vary

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.