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
https://forums.phpfreaks.com/topic/226116-extract-this-data/
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
https://forums.phpfreaks.com/topic/226116-extract-this-data/#findComment-1167409
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.