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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T16:43:23+00:00 2026-06-13T16:43:23+00:00

I am working on a simple front controller, mainly for learning purposes. I like

  • 0

I am working on a simple front controller, mainly for learning purposes.

I like the way Symfony does routing, having patterns in your map like this: /news/{category}/{id} and passing category and id variables to the controller. But my problem is -because of my incompetence of using RegEx – I don’t know, how to match the patterns to the URI.

How should I match

/news/{category}/{id}

to

/news/tech/5784

Should I allow patterns like this: /news/* – where * matches everything?
Or where the variables are mixed with some trash, like this /news/{category}_ex/14{id}?

Getting the variables and values are not much of the problem, but writing a regular expression for matching is.

Thank you for your help in advance

  • 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-13T16:43:25+00:00Added an answer on June 13, 2026 at 4:43 pm

    The simplest would be to use (regex) named sub-patterns.

    $regex = '#^/news/(?P<category>[a-z0-9]+)/(?P<id>[0-9]+)$#';
    $path  = '/news/tech/5784';
    
    if (preg_match($regex, $path, $matches))
    {
        $matches['category'] === 'tech';
        $matches['id']       === '5784';
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

im working on a simple game like space invaders,and i got into a problem.
This seems simple, but it's not working for me. I'd like to display an
I'm working on learning to use boost threads. I'm trying to make a simple
I am trying to get a simple (all front-end) application working offline on ipad,
The simple working query, list the number of licenses for each license type: Query:
I'm trying to make a simple text editor with winapi, its working for simple
Good Day, I have a simple working routine in Perl that swaps two words:
Working on a simple C program I'm stuck with an if test: int line_number
Working on a simple TimeTracker App. You start a timer, wait a certain time,
im working on a simple C++ HTTP server as a school project and I

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.