第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

刪除多個(gè)空格

刪除多個(gè)空格

我$row['message']從MySQL數(shù)據(jù)庫(kù)獲取數(shù)據(jù),我需要?jiǎng)h除所有空白\n \t,依此類推。$row['message'] = "This is   a Text \n and so on \t     Text text.";應(yīng)格式化為:$row['message'] = 'This is a Text and so on Text text.';我試過(guò)了: $ro = preg_replace('/\s\s+/', ' ',$row['message']); echo $ro;但不會(huì)刪除\n或\t,而只能刪除單個(gè)空格。誰(shuí)能告訴我該怎么做?
查看完整描述

4 回答

?
犯罪嫌疑人X

TA貢獻(xiàn)2080條經(jīng)驗(yàn) 獲得超4個(gè)贊

你需要:


$ro = preg_replace('/\s+/', ' ',$row['message']);

您使用的\s\s+是指空格(空格,制表符或換行符)后跟一個(gè)或多個(gè)空格。這實(shí)際上意味著用單個(gè)空格替換兩個(gè)或多個(gè)空格。


您想要的是用單個(gè)空格替換一個(gè)或多個(gè)空格,因此您可以使用模式  \s\s*或\s+(推薦)


查看完整回答
反對(duì) 回復(fù) 2019-10-06
?
慕的地8271018

TA貢獻(xiàn)1796條經(jīng)驗(yàn) 獲得超4個(gè)贊

<?php

$str = "This is  a string       with

spaces, tabs and newlines present";


$stripped = preg_replace(array('/\s{2,}/', '/[\t\n]/'), ' ', $str);


echo $str;

echo "\n---\n";

echo "$stripped";

?>

這個(gè)輸出


This is  a string   with

spaces, tabs and newlines present

---

This is a string with spaces, tabs and newlines present


查看完整回答
反對(duì) 回復(fù) 2019-10-06
?
12345678_0001

TA貢獻(xiàn)1802條經(jīng)驗(yàn) 獲得超5個(gè)贊

簡(jiǎn)化為一個(gè)功能:


function removeWhiteSpace($text)

{

    $text = preg_replace('/[\t\n\r\0\x0B]/', '', $text);

    $text = preg_replace('/([\s])\1+/', ' ', $text);

    $text = trim($text);

    return $text;

}

根據(jù)Danuel O'Neal的回答。


查看完整回答
反對(duì) 回復(fù) 2019-10-06
  • 4 回答
  • 0 關(guān)注
  • 722 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)