PHP—POSIX正規表示式函數

伊谢尔伦
發布: 2016-11-21 17:05:13
原創
1160 人瀏覽過

POSIX Regex函數

ereg_replace — 正規表示式取代

ereg — 正規表示式比對

eregi_replace — 不區分大小寫的正規表示式配對

eregi_replace — 不區分大小寫的正規表示式配對

eregi_replace —不區分大小寫的正規表示式。用正規表示式將字串分割到陣列中

spliti — 用正規表示式不區分大小寫將字串分割到陣列中

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);
?>
登入後複製


相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!