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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T14:41:22+00:00 2026-05-10T14:41:22+00:00

$output = preg_replace(|(/D)(/s+)(/d+)(;)|, //1,//3;, $output); I’m trying to replace all alphabetical character followed by

  • 0
$output = preg_replace('|(/D)(/s+)(/d+)(;)|', '//1,//3;', $output); 

I’m trying to replace all alphabetical character followed by one or more whitespace characters (tabs and/or spaces) followed by one or more numerical characters followed by a semicolon with the alphabetical character followed by a comma followed by the numerical digits and then the semicolon.

I’ll provide an example:

Start:

hello world      1007; 

End:

hello world,1007; 
  • 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. 2026-05-10T14:41:23+00:00Added an answer on May 10, 2026 at 2:41 pm

    The two | at the start and end probably are incorrect – and should both be forward-slashes.

    All other forward slashes should be backward slashes (and need escaping).

    And since PHP 4.04 $n is the preferred way of referring to a capture group.

    $output = preg_replace('/(\\D)\\s+(\\d+;)/', '$1,$2', $output); 

    If you use single quotes you don’t need to escape your backslashes:

    $output = preg_replace('/(\D)\s+(\d+;)/', '$1,$2', $output); 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to replace all the letters and spaces after the first two, using
I am trying to replace accented characters with the normal replacements. Below is what
I am trying to replace a certain word in php and include a whitespace
How can characters \n \t \r be replaced with '-' ? echo preg_replace('/\s/','-','\n\t\n\r\n');//output '\n\t\n\r\n'
I am trying to replace one or two letters in a string. Please consider
again. I'm trying to go through a database table and replace all instances of
i'm using preg replace to replace syntax in my output. Here is my code:
Why does this preg_replace to remove HTML entities not work? // Remove all HTML
What would be the syntax to replace all the content between a set of
I've small preg_replace problem. I need to resize iframe code output so I'm using

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.