2
html 문자열의 앵커 태그 정의에있는 URL을 얻고 싶습니다. html은 상당히 잘 구성되어 있지만 수집하려고 시도하는 문자열에는 Google지도의 주소가 포함되어있어 매우 다를 수 있습니다. preg_match_all을 사용하여 모든 일치하는 URL을 얻으려고합니다.주소 일치가 포함 된 regexp achor href url
<tr><td><a href="http://maps.google.com/maps?q=4165 E LIVE OAK AVE,">map</a></td></tr>
<tr><td><a href="http://maps.google.com/maps?q=8000 SUNSET BLVD, LOS ANGELES,">map</a></td></tr>
<tr><td><a href="http://maps.google.com/maps?q=30600 THOUSAND OAKS BLVD, AGOURA,">map</a></td></tr>
<tr><td><a href="http://maps.google.com/maps?q=9090 19TH ST, ALTA LOMA,">map</a></td></tr>
<tr><td><a href="http://maps.google.com/maps?q=185 W ALTADENA DR, ALTADENA,">map</a></td></tr>
<tr><td><a href="http://maps.google.com/maps?q=620 E MOUNT CURVE AVE,">map</a></td></tr>
당신이 내게 준 것은 모든 URL을 얻기 위해 이전에 사용하려고했던 것을 줄이기 위해 필요한 것이 었습니다.
'code' /\b(?:(?:https?|ftp):\/\/|www\.)[^"]+(?=")/'code'을 : 여기에 내가 지금 가지고있는 무엇 –