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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T06:40:05+00:00 2026-06-01T06:40:05+00:00

It seems to be a problem with magic quotes. The original string just contains

  • 0

It seems to be a problem with magic quotes. The original string just contains \n and \n\n and \n\n\n and \n\r and so on. These newlines arent interpreted by the browser.

What we wanna do is: to replace more than 2 newlines with just 1 single \n.

What we tried yet: a lot of different regular expressions with preg_replace, but the \n wont be kicked out.

Any ideas?

Heres an example (updated on your suggestions – but still not working):

echo '<h3>Source:</h3>';
$arr_test = array(
    'title'     => 'my title',
    'content'   => 'thats my content\n\n\n\nwith a newline'
);
$json_text = json_encode($arr_test);
$json_text = stripslashes($json_text);  //if I leave that out, then \\n will echo
echo $json_text;
// OUTPUT: {"title":"my title","content":"thats my content\n\n\n\nwith a newline"}

echo '<h3>Result 1:</h3>';
$pattern = '/\n{2,}/';
$result1 = preg_replace($pattern,"x",$json_text);
echo $result1;
// OUTPUT: {"title":"my title","content":"thats my content\n\n\n\nwith a newline"}

echo '<h3>Result 2:</h3>';
$result2 = preg_replace( '/([\n]+)/s', 'x', $json_text, -1, $count );
echo $count;
// OUTPUT: 0
echo $result2;
// OUTPUT: {"title":"my title","content":"thats my content\n\n\n\nwith a newline"}
  • 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-01T06:40:06+00:00Added an answer on June 1, 2026 at 6:40 am

    You could also try looping through the string and replace two newlines with one until no double newline is left:

    echo '<h3>Result 4:</h3>';
    $result4 = $json_text;
    do{
        $result4 = str_replace('\n\n','\n',$result4, $count);
    }while($count>0);
    
    echo $result4;
    // OUTPUT: {"title":"my title","content":"thats my content\nwith a newline"}
    

    or with preg_replace:

    echo '<h3>Result 5:</h3>';
    
    $result5 = preg_replace('/(\\\n)+/m', '\\\n', $json_text);
    
    echo $result5;
    // OUTPUT: {"title":"my title","content":"thats my content\nwith a newline"}
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My problem seems to be quite simple, but it's not working the intuitive way.
The problem seems very strange. I have a AJAX helper function within a same
My problem seems to be this: heap data allocated by one thread (that later
Today I stumbled about a Problem which seems to be a bug in the
I have a problem that seems like its a result of a deadlock-situation. Whe
I'm facing a problem that seems to have no straighforward solution. I'm using java.util.Map
I have a problem that seems so senseless that I'm sure I'm missing something
Maybe someone found a workaround for the following problem: It seems as if AXIS
-----UPDATE----- Well, seems that the problem was in last.id . When database is created
I have inherited a Rails 3 application with a cookie/session problem. Namely, something seems

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.