我試圖的preg_replace號信,但數量「」但不超過7個字符的preg_replace正則表達式號信
只替代「數量」和不超過7個字符
文本代碼
"3"sca"""co"1"str"0"ctor""r"3"t"0"r"1""locat"5"o"133""0"27""754a49b393c2a0"33"b97"332"cb7"3"c3c07"2""co"1"str"0"ctor""r"3"t"0"
數2 = d 數3 = E
試圖取代 「3」 至E, 「23」 至DE, 「33」 到EE, 「32」 至DE, 「333223」,以eeed德
「數字」,以信
我的preg_replace
$string = preg_replace("/\"322\"+/", "edd", $string);
$string = preg_replace("/\"233\"+/", "dee", $string);
$string = preg_replace("/\"32\"+/", "ed", $string);
$string = preg_replace("/\"23\"+/", "de", $string);
$string = preg_replace("/\"33\"+/", "e", $string);
$string = preg_replace("/\"333\"+/", "e", $string);
$string = preg_replace("/\"3\"+/", "e", $string);
$string = preg_replace("/\"3\"+/", "e", $string);
$string = preg_replace("/\"3\"+/", "e", $string);
$string = preg_replace("/\"3\"+/", "e", $string);
$string = preg_replace("/\"3\"+/", "e", $string);
但過一段時間例如 「3333332」 或 「2222333」 及其動態變化 怎麼可能與一個了preg_replace
爲什麼你想更換組合,例如322?你太過於複雜了。 –
我試圖第三方web刮他們隱藏得字符串,如果我更換,我將得到完整的GET值 – Christian
之前更換754a49b393c2a0「33」 B97「332」 CB7「3」 c3c07「2」 後更換 754a49b393c2a0eeb97eedcb7ec3c07d – Christian