Jump to content

Extract this data....


savagenoob

Recommended Posts

I want to extract the information in this snippet using regex...

 <div class="agent_display">
                                        <dl>
                                            <dt>INSZONE INS. SERVICES INC.</dt>
                                            <dd>7200 Fair Oaks Blvd.</dd>
                                            <dd>Suite 210</dd>
                                            <dd>Carmichael, CA 95608</dd>

                                            <dd>Phone: (888) 988-9948</dd>
                                            <dd>Fax: (916) 486-4335</dd>
                                            <dd>Hours: </dd>
                                            <dd>M - F 8:00 a.m. to 7:00 p.m.</dd>

                                            <dd>License: OF82764</dd>

                                            <dd><a href="http://agents.mercuryinsurance.com/agentlocator/DisplayQuote.do?AgentCode=045238"><img src="images/faa_agents_button_contact.gif" alt="Contact this agent" /></a> 

										</dd>
                                        </dl><br class="clear" />
                                    </div><!-- close agent_display -->

I am trying /<div class=("|\')agent_display("|\')>(.*?)("|\')<\/div>/ but its not working...

Link to comment
Share on other sites

are you use moditer s for multi-line contest

<?php
$test = ' <div class="agent_display">
                                        <dl>
                                            <dt>INSZONE INS. SERVICES INC.</dt>
                                            <dd>7200 Fair Oaks Blvd.</dd>
                                            <dd>Suite 210</dd>
                                            <dd>Carmichael, CA 95608</dd>

                                            <dd>Phone: (888) 988-9948</dd>
                                            <dd>Fax: (916) 486-4335</dd>
                                            <dd>Hours: </dd>
                                            <dd>M - F 8:00 a.m. to 7:00 p.m.</dd>

                                            <dd>License: OF82764</dd>

                                            <dd><a href="http://agents.mercuryinsurance.com/agentlocator/DisplayQuote.do?AgentCode=045238"><img src="images/faa_agents_button_contact.gif" alt="Contact this agent" /></a> 

										</dd>
                                        </dl><br class="clear" />
                                    </div><!-- close agent_display -->
';
preg_match('/<div class=("|\')agent_display("|\')>(.*?)<\/div>/s', $test, $out);
print_r($out);
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.