개발자의 끄적끄적

[php] preg_match_all 사용법 및 예제 본문

개발/php

[php] preg_match_all 사용법 및 예제

효벨 2019. 11. 6. 03:00
728x90
반응형

[php] preg_match_all 사용법 및 예제

 

$str = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua"; 
preg_match_all('/do/', $str, $matches);
print_r( $matches[0] );
# Array
# (
#     [0] => do
#     [1] => do
#     [2] => do
# )

위처럼 정규표현식에 맞는 것을 모두 추출하는 PHP 함수 입니당~

 

샘플들!!

 

모든 태그 추출

preg_match_all("/(<([\w]+)[^>]*>)(.*?)(<\/\\2>)/", $html, $matches);

 

모든 a 태그 추출

preg_match_all("/(<(a+)[^>]*>)(.*?)(<\/\\2>)/", $html, $matches);

 

http://, https://로 시작하는 URL 수집

preg_match_all("/\b(?:(?:https?|ftp):\/\/|www\.)[-a-z0-9+&@#\/%?=~_|!:,.;]*[-a-z0-9+&@#\/%=~_|]/i", $html, $matches);

 

//, http://, https://로 시작하는 URL 수집

preg_match_all("/(\b(?:(?:https?|ftp):))?\/\/[-a-z0-9+&@#\/%?=~_|!:,.;]*[-a-z0-9+&@#\/%=~_|]/i", $text, $matches);

 

자주 쓰이고 도움될꺼 같아서 퍼왔습니당!

 

제타위키에 아주 자세히 정리되어 있더라구요~

 

아래 출처 가셔서 쭉 보시면 많이 도움되실꺼같아요!

 

참고들하세용!

 

출처 : [제타위키] https://zetawiki.com/wiki/PHP_preg_match_all()

반응형
Comments