Page 1 of 1

regex

Posted: Mon Jul 19, 2010 7:17 pm
by pedroz
i was never good with regex... could you please help me?

1. Want to remove [stream ...] tags:
$content = "blah blah blah [stream provider=video flv=x:video.flv embed=false share=false width=450 height=253 dock=true controlbar=over bandwidth=high autostart=false /]";

$content = preg_replace( '/\[(stream provider)(.*)\/\]', '', $content);
I know the regex is wrong...


2. content= '[video title="vtitle" size=10 width=400 height=300]http://www.youtube.com/?v=xxx[/video]'

how can i get this?
$title=vtitle; size=10; width=400; height=300;
$url=http://www.youtube.com/?v=xxx
preg_match?

note, tag may be only
[video]http://www.youtube.com/?v=xxx[/video] or
[video title="vtitle" size=10]http://www.youtube.com/?v=xxx[/video]
(users do not use always full options)


Many, many... Thanks

Re: regex

Posted: Mon Jul 19, 2010 7:24 pm
by AbraCadaver
Try:

Code: Select all

$content = preg_replace( '#\[stream provider[^\]]+/\]#', '', $content);