POSIX 정규식 함수
ereg_replace — 정규식 대체
ereg — 정규식 일치
eregi_replace — 대소문자를 구분하지 않는 정규식 대체
eregi — 대소문자를 구분하지 않는 정규식 일치
split — 정규식을 사용하여 문자열을 배열로 분할합니다.
split — 대소문자를 구분하지 않는 정규식 일치 문자열을 배열로 분할합니다.
sql_regcase — 생성 크기를 구분하지 않는 일치를 위한 정규식
사용 예:
<?php // Returns true if "abc" is found anywhere in $string. ereg("abc", $string); // Returns true if "abc" is found at the beginning of $string. ereg("^abc", $string); // Returns true if "abc" is found at the end of $string. ereg("abc$", $string); // Returns true if client browser is Netscape 2, 3 or MSIE 3. eregi("(ozilla.[23]|MSIE.3)", $_SERVER["HTTP_USER_AGENT"]); // Places three space separated words into $regs[1], $regs[2] and $regs[3]. ereg("([[:alnum:]]+) ([[:alnum:]]+) ([[:alnum:]]+)", $string, $regs); // Put a <br /> tag at the beginning of $string. $string = ereg_replace("^", "<br />", $string); // Put a <br /> tag at the end of $string. $string = ereg_replace("$", "<br />", $string); // Get rid of any newline characters in $string. $string = ereg_replace("\n", "", $string); ?>