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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T07:45:42+00:00 2026-06-10T07:45:42+00:00

I am new to regular expressions, and I’ve been trying to use it with

  • 0

I am new to regular expressions, and I’ve been trying to use it with an url, but I can’t get it to work.

I have a string that is:

/plugins/plugins/plugins/plugins/plugins/plugins/

and I would like to replace all letters to the string “{char}” so that the string end up being:

/{char}/{char}/{char}/{char}/{char}/{char}/

I’ve tried this:

<?php
    $pattern        = '#(/)([a-z\_]+)(/)#'; 
    $replacement    = '$1{char}$3'; 
    $string         = '/plugins/plugins/plugins/plugins/plugins/plugins/';

    echo preg_replace($pattern, $replacement, $string);
?>

But this code is resulting in this:

/{char}/plugins/{char}/plugins/{char}/plugins/

What am I doing wrong?

  • 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-10T07:45:43+00:00Added an answer on June 10, 2026 at 7:45 am

    The problem is your regex is matching /plugins/ – matching slashes at both the front and the end. Each letter is only matched by the regex once, so if a slash is matched at the end of one word it can’t also be counted as the start of another. Hence, it’s only matching every other one.

    Try this instead:

    <?php
        $pattern        = '#(/)([a-z\_]+)(?=/)#'; 
        $replacement    = '$1{char}'; 
        $string         = '/plugins/plugins/plugins/plugins/plugins/plugins/';
    
        echo preg_replace($pattern, $replacement, $string);
    ?>
    

    It works by using lookahead, instead of actually matching the final slash (and “consuming” it) it just checks to make sure it’s there.

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

Sidebar

Related Questions

I'm new to regular expressions and grep, but I've been trying to learn it
I'm new to regular expressions, but I'm trying to learn about it. I want
I'm new to regular expressions, but I'd like to match a string up to
I'm quite new to regular expressions in Python. I have the following string and
I'm new to regular expressions and can't get the hang of them. Can you
I am pretty new on regular expressions, but as far as I've been wandering
I'm new to Regular Expressions... I've been asked a regular expression that accepts Alphanumerics,
I'm new to regular expressions in php. I have a long string of html.
I'm pretty new to regular expressions. I've worked out the string (?i)\$url\[([0-9])\] to match
So I'm completely new to regular expressions , and I'm trying to use Java's

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.