2013-12-18 139 views
0

我必須替換另一部分字符串。你能幫我用preg_replace嗎?

原文:

src="../../Estatico//ComunesSEI/Images/Supernet_logo.gif" 

,我想要的結果:

src="https://empresas3.gruposantander.es/SEI_PARTENON_ENS/Estatico//ComunesSEI/Images/Supernet_logo.gif" 

問題:我要改變

src="../.. 

src="src="https://empresas3.gruposantander.es/SEI_PARTENON_ENS 
+0

歡迎來到SO!你能解釋你所嘗試過的嗎? – JNF

+0

我試過 $ pattern ='/src="\/..\/..\//'; $ replace ='src =「https://empresas3.gruposantander.es/SEI_PARTENON_ENS'; $ output = preg_replace($ pattern,$ replace,$ output); – Kargol

+0

嘗試轉義'.'。 src =「\/\。\。\/\。\。\ //'; – JNF

回答

0

爲什麼不使用str_replace

$string = "../../Estatico//ComunesSEI/Images/Supernet_logo.gif"; 
$find = "../.."; 
$replace = "https://empresas3.gruposantander.es/SEI_PARTENON_ENS"; 

echo str_replace($find, $replcae $string);