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

  • Home
  • SEARCH
  • 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 8704249
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T03:03:20+00:00 2026-06-13T03:03:20+00:00

I just have a question about Regex…. I really have no idea so any

  • 0

I just have a question about Regex…. I really have no idea so any kind of help is appreciated.

The question is: Define a regex that characterises the language consisting of all strings of a’s and b’s in which the 2nd and 2nd-Last characters are ‘b’.

Any ideas on how to start the question?

Thanks very much

  • 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-06-13T03:03:21+00:00Added an answer on June 13, 2026 at 3:03 am

    To solve this you need to:

    1. find a string that starts with an a or b: ^(a|b),
    2. has a b as the second character `^(a|b)b
    3. is followed by a string of as, bs or both: ^(a|b)b[a-b]*
    4. has another b: ^(a|b)[a-b]*b
    5. and ends with another a or b: ^(a|b)b[a-b]*b(a|b)$
    6. then you need to test your string against that regular expression: /^(a|b)b[a-b]*b(a|b)$/.test(string)

    A proof of concept using jQuery and JavaScript:

    ​$('li').each(
        function(i,el) {
            var text = $(el).text();
            if (/^((a|b)b[a-b]*b(a|b))$/.test(text)) {
                $(el).addClass('matched');
            }
        });​​​
    

    JS Fiddle demo.

    References:

    • Regular Expressions, at the MDN.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just have one simple question about XSS attack. I know that you can
I just have a question about how to achieve DRY with javascript that generates
I just have a question about my cuda program that I wrote. It allows
I just have a quick question about how to get the length of a
So I just have posted a question about this code (which was answered): $(document).ready(Main);
I have a question about my C++ homework. I am just confused about *this.
I just saw this dating site on builtwithbootstrap and have a question about table
I am just getting into Sharepoint, and I have a question about having a
I just discovered the what c# knowledge should I have? question and wondered about
I just have a question regarding SimpleJSON's documentation. Is it implicit understood that functions

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.