����

Example #1 ������ʽ����

<?php
// $string ������λ���ҵ� "abc" �ͷ��� true��
ereg("abc"$string);            

// $string ����ʼλ���ҵ� "abc" �ͷ��� true��
ereg("^abc"$string);

// $string ĩβ�ҵ� "abc" �ͷ��� true��
ereg("abc$"$string);

// �ͻ�������� Netscape 2�� 3 �� MSIE 3 �ͷ��� true��
eregi("(ozilla.[23]|MSIE.3)"$_SERVER["HTTP_USER_AGENT"]);

// �����ո�ָ��Ϊ $regs[1]�� $regs[2]�� $regs[3]��
ereg("([[:alnum:]]+) ([[:alnum:]]+) ([[:alnum:]]+)"$string$regs); 

// $string ͷ����һ�� <br /> ��ǩ��
$string ereg_replace("^""<br />"$string); 

// $string β�����һ�� <br /> ��ǩ��
$string ereg_replace("$""<br />"$string); 

// ɾ�� $string ��Ļ��з���
$string ereg_replace("\n"""$string);
?>