Ver Mensaje Individual
  #6 (permalink)  
Antiguo 22/04/2008, 10:38
Avatar de pateketrueke
pateketrueke
Modernizr
 
Fecha de Ingreso: abril-2008
Ubicación: Mexihco-Tenochtitlan
Mensajes: 26.399
Antigüedad: 16 años
Puntos: 2534
Re: Ayuda facil con Expresion regular

Código PHP:
<?php
    
if (preg_match_all('/([^#]+)#?/','AAA#NN#BBB',$test))
    {
        
print_r($test[1]);
    }
?>