Ver Mensaje Individual
  #4 (permalink)  
Antiguo 03/09/2007, 13:38
Deivit82
 
Fecha de Ingreso: agosto-2007
Mensajes: 5
Antigüedad: 17 años, 6 meses
Puntos: 0
Re: Expresión Regular

Cita:
Iniciado por mauled Ver Mensaje
Código PHP:
<?
$size 
"100px";
$cadena "height=300px hola mundo width=200px";

$regex[]  ="/[H|h]eight=[0-9]{0,3}px/";
$regex[]  ="/[W|w]idth=[0-9]{0,3}px/";

$replacements[] = " height={$size} ";
$replacements[] = " width={$size} ";

$results preg_replace($regex$replacements$cadena);
var_dump($results);
?>
Muchas gracias!!! Esto funciona.. pero si la cadena fuera:
$cadena = 'height="300px" hola mundo width=200px';

ya no funciona... jarl!!!