preg-replace

    0熱度

    2回答

    我試圖刪除之間的所有空格設置高亮之間的所有空白: [code/][code] 例如: [code]http://stackoverflow.com/questions/ask[/code] [code]http://stackoverflow.com/questions/ask[/code] lorem ipsum [code]http://stackoverflow.com/que

    1熱度

    2回答

    我在PHP做translateModel替換第一個空格後有 ,這是在HTML將返回了 因此,在示例代碼,它只是與' ' preg_replace('/\s/', ' ', $myString); 替代空間但我要的是替換第一空間等後(不計第一空間) 如: A B C   D     E

    0熱度

    2回答

    你好,我想替換。這是隨着空間像 $ data ='你好xzx。感謝manresa.org'; 我使用像 str_replace(". ","<br><br>",$data); 但它不是爲我工作。 當我只替換。這與空間不符 $ data ='Hello ** xzx。** Thank manresa.org'; str_replace(".","<br><br>",$data); 結果是:

    0熱度

    3回答

    使用PHP,在HTML文件中,我想要刪除腳本元素中的CDATA塊。 <script type="text/javascript"> /* <![CDATA[ */ var A=new Array(); .......................... .......................... /* ]]> */ </script> so

    1熱度

    5回答

    刪除&NBSP我需要更換由'單一空間   這是我的字符串 To Everything There is a Season     For everything there is a season, and a time for every purpose under heaven:     它應該是這樣的 To Everything Th

    1熱度

    1回答

    我需要一個preg_replace()表達式來刪除除數字和css單位以外的所有字符(字母&標點符號)。但我需要它匹配確切單位而不是字母。 比如我寫這個表達式: $check = preg_replace('/[^(0-9|px|em|\%|pt|cm|auto)$]/', '', '80sd0sdfdfpx'); echo $check; ,其結果是: 800px 那OK,直到這個例子:

    0熱度

    1回答

    我們PHP Web應用程序(PHP 5.6.30上Windows Server 2008 R2運行)使用UTF-8編碼,但需要從正在使用Windows-1252編碼的文件導入數據。數據導入時,按如下所示轉換爲UTF-8。 iconv('Windows-1252', 'UTF-8', $value); 當我們導入下面的示例數據,轉換正常工作的大部分Windows-1252字符,但在下面第8行中,

    1熱度

    2回答

    我想創建一個匹配A,B和AB的正則表達式,其中A和B是相當複雜的正則表達式。 一個解決方案是使用(A|A?B)或(AB?|B),但我必須重複其中一個表達式。 A?B?不起作用,因爲這也匹配空字符串。 是否可以創建此正則表達式而不重複A或B?

    -1熱度

    1回答

    $data = 'this is appLe and ApPle'; $search = 'apple'; //例如,一個想使用$search如何陣列用許多話$search = array("apple","pear") $replace = 'pear'; // $replace = array("pen","pupil") 如何轉換這個函數使用數組的話在$搜索和$替換? $data = pre

    0熱度

    2回答

    我必須做在PHP的preg_replace如下: [some text][id]應<a href='id'>some_text</a>其中id是一個整數 嘗試下面的代替,可惜沒有按預期工作: preg_replace("/\[[^)]\]\[[0-9]+\]/","<a href='$2'>$1</a>",$string); 此外,還可以考慮使用帶額外支架的示例[some text]][id]