코드:
결과보기 »
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <title>PHP Regular Expression</title> </head> <body> <?php $subject = "PHP is cooooool!"; // 문자 'l' 바로 앞에 문자 'o'가 최소 2번 이상 최대 4번 이하로 나타나는 경우를 검색함. preg_match_all('/o{2,4}l/', $subject, $match_01); var_dump($match_01); echo "<br><br>"; // 문자 'l' 바로 앞에 문자 'o'가 최소 2번 이상 나타나는 경우를 검색함. preg_match_all('/o{2,}l/', $subject, $match_02); var_dump($match_02); echo "<br><br>"; // 문자 'l' 바로 앞에 문자 'o'가 정확히 6번 나타나는 경우를 검색함. preg_match_all('/o{6}l/', $subject, $match_03); var_dump($match_03); ?> </body> </html>