<code>$html = title EOF; $isMatched = preg_match('/<a>(.*?)/', $html, $matches);</a></code>
<code>$html = title EOF; $isMatched = preg_match('/<a>(.*?)/', $html, $matches);</a></code>
그럼 탐욕스러운 매칭을 이용해야죠~/<a>(.*?)</a>/
.*?
다음에 "
를 사용하면 다음 문자 "
금지된 욕심 매칭 U를 사용
개인 경험으로는 정규식을 작성할 때 항상 Uis를 추가합니다
'/