dreamMyDream2014 2019-04-21 06:26
浏览 28

删除换行符和空格php [复制]

This question already has an answer here:

I have a string:

$str = '
            This Like a Somthing awesome text with 
   goods:Fb,Teleg,Top,Prods.fm,Ad-...
';

How I can remove spaces and line breaks? I want get this:

$str = 'This Like a Somthing awesome text with goods:Fb,Teleg,Top,Prods.fm,Ad-...';

A tried use:

trim($str);

But get same result.

</div>
  • 写回答

1条回答 默认 最新

  • dongnaosuan5407 2019-04-21 06:29
    关注

    You can use a combination of trim to remove leading and trailing whitespace, and preg_replace to replace all newlines and their surrounding spaces internal to the string with a single space:

    $str = preg_replace('/\s*\R\s*/', ' ', trim($str));
    echo $str;
    

    Note in the above regex \R matches any newline (, ) character.

    Output:

    This Like a Somthing awesome text with goods:Fb,Teleg,Top,Prods.fm,Ad-...
    

    Demo on 3v4l.org

    评论

报告相同问题?

悬赏问题

  • ¥20 simulink单相桥式整流电路
  • ¥35 问问51单片机流水灯的代码该怎么写
  • ¥15 关于#百度#的问题:感觉已经将字体段落、字体、页边距、纸张大小、文档网络调成与论文模板一致,为什么黄色部分字体左右的间距还是不一样啊,求私信发文件接收看一下
  • ¥15 stata webuse报错
  • ¥15 TypeError: Cannot read properties of undefined (reading 'status')
  • ¥15 如何利用AI去除图片中的竹架子
  • ¥15 python 写个基金爬取的代码,自动卖出功能
  • ¥15 Linux系统启动不起来
  • ¥15 为什么运行仿真数码管不亮(语言-c语言)
  • ¥15 陈仁良《直升机飞行动力学》小扰动线化方程如何推导