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 6633593
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T22:49:53+00:00 2026-05-25T22:49:53+00:00

Like the title says, I have a (faulty) Regex in JavaScript, that should check

  • 0

Like the title says, I have a (faulty) Regex in JavaScript, that should check for a “2” character (in this case) surrounded by slashes. So if the URL was http://localhost/page/2/ the Regex would pass.

In my case I have something like http://localhost/?page=2 and the Regex still passes.

I’m not sure why. Could anyone tell me what’s wrong with it?

/^(.*?)\b2\b(.*?$)/

(I’m going to tell you, I didn’t write this code and I have no idea how it works, cause I’m really bad with Regex)

  • 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-25T22:49:53+00:00Added an answer on May 25, 2026 at 10:49 pm

    You don’t check for a digit surrounded by slashes. The slashes you see are only your regex delimiters. You check for a 2 with a word boundary \b on each side. This is true for /2/ but also for =2

    If you want to allow only a 2 surrounded by slashes try this

    /^(.*?)\/2\/(.*?)$/
    

    ^ means match from the start of the string

    $ match till the end of the string

    (.*?) those parts are matching everything before and after your 2 and those parts are stored in capturing groups.

    If you don’t need those parts, then Richard D is right and the regex /\/2\// is fine for you.

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

Sidebar

Related Questions

Title says all. I'll have navigation that looks like this and it's dynamically created
Like the title says, I want to have a HTML table that allows its
Like the title says, i have a parent window with button that opens a
As the title says I have a string like this: $string = "Hello World<br>hello
Well like the title says, how can i check it? i have started something
Like the title says I am trying to create some regex that selects anything
So, just like the title says, I need to create an application that gets
Like the title says, I have the following exception: Description: Event code: 3005 Event
Like the title says. I find a lot of the issues I have are
What the title says, really. I have a named pipe. I would like to

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.