On Dec 27, 2007 12:40 PM, Robert Cummings <[EMAIL PROTECTED]> wrote:
> On Thu, 2007-12-27 at 11:27 +0300, OOzy Pal wrote:
> > more words/chars[<a href="#c_1" id="ids_1"  title="Hello">2</a>]more 
> > words/chars
> >
> > How can I match for the title. In this case the word Hello using regexp?
>
> <?php
>
> $text = 'more words/chars[<a href="#c_1" id="ids_1"
> title="Hello">2</a>]more words/chars';
>
> $title = null;
> if( preg_match( '/title="([^"]*)"/Umi', $text, $bits ) )
> {
>     $title = $bits[1];
> }
>
> echo 'Title: '.$title."\n";
>
> ?>
>
> Cheers,
> Rob.
> --
> ...........................................................
> SwarmBuy.com - http://www.swarmbuy.com
>
>     Leveraging the buying power of the masses!
> ...........................................................
>

Wow, worked perfect. Thank you. I just made it (preg_match_all)

more words/chars[<a href="#c_1" id="ids_1"  title="Hello">2</a>]more words/chars

How can I also find the number 2 in (...>2</a...) in the same sentence
and made preg_match_all make array of two items

Array
(
    [0] => Hello
    [1] => 2

)

-- 
OOzy
Ubuntu-Gutsy (7.10)

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to