1樓:匿名使用者
php用兩個函式可以替換。
mixed str_replace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] )
mixed preg_replace ( mixed $pattern , mixed $replacement , mixed $subject [, int $limit = -1 [, int &$count ]] )
這兩個函式中,第一個函式較為高效,第二個函式使用了正規表示式替換,效率會低點,
但是替換更加靈活。
例子:<?php
$str = "文字域中輸入的內容";
//單個字串替換
str_replace("\n", "", $str);
preg_replace("/\n/", "", $str);
//多個字串替換
str_replace(array("\n", "\r"), "", $str);
str_replace(array("\n", "\r"), array("", ""), $str);
preg_replace('/\n|\r/', "", $str);
2樓:匿名使用者
$content = str_replace("\n","",$content);
jquery怎樣去掉某個字串,JS中如何刪除某個指定字元前後的字串
1 使用replace oldchar,newchar 替換 var str asdfghjkl 宣告變數 str.replace d 將a字元替換為空字元 string str abcsdfsdffs str str.replace ab 用這個方法試試 replace和replaceall js...
VB從檔案中讀取了定長字串,如何去掉後面的空格
定長字串你沒有理解。一個定長字串,比如dim str as string 256,這個str變數裡面就包含了256個空字元,而不是空格。首先你要理解字元和字串的區別,字元是一個一個的,字串是一組字元組成的。其次,空字元的ascii碼是0,而空格是32,在vb裡表示為 chr 0 和 chr 32 在...
C中如何除去字串中的轉義符,C 如何去掉string中所有轉義字元(特殊符號)?
在字串的前邊加 eg string str 14 r a string str a r n str.replace r n c 轉義字元總結 轉義字元 一種特殊的字元常量 以反斜線 開頭,後跟一個或幾個字元。具有特定的含義,不同於字元原有的意義,故稱 轉義 字元。主要用來表示那些用一般字元不便於表示...