Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
extract image in text using preg_match
Old 08-08-2008, 01:26 AM extract image in text using preg_match
Junior Talker

Posts: 3
Name: sanjeevan sivapalan
Trades: 0
I have this preg_match command. I am not good with them and just learning. I want to know how to extract only the src="whatever" part and not the rest like width="adfsdf" and so on. I know that (*.)+ is not the best way to do it but I have no clue. So please help. Here's what I have so far.

PHP Code:
preg_match('/src=["\'](.*)+["\']/'$text$match); 
sanjeevan is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 08-08-2008, 04:25 AM Re: extract image in text using preg_match
mtishetsky's Avatar
King Spam Talker

Posts: 1,226
Name: Mike
Location: Mataro, Spain
Trades: 0
PHP Code:
<?
    $re 
'/src=([\'"])?(.*?)\\1/';
    
$strings[] = 'img src="kldfj klsdjf.jpg"';
    
$strings[] = 'img src=\'kldfj klsdjf.jpg\'';
    
$strings[] = 'img src=kldfj klsdjf.jpg';

    foreach (
$strings as $s) {

        
preg_match($re$s$m);
        
print_r($m);
    }
?>
__________________

Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE

And don't forget to give me talkupation!
mtishetsky is offline
Reply With Quote
View Public Profile Visit mtishetsky's homepage!
 
Reply     « Reply to extract image in text using preg_match
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.30568 seconds with 12 queries