mb_ereg_match() 是 PHP 中的內置函數,用於使用正則表達式匹配多字節字符串。
用法:
mb_ereg_match(pattern, string, options = null): bool
Parameters: 該函數有3個參數:
- pattern: 模式參數定義正則表達式
- string:該參數匹配或由正則表達式模式評估。
- option: 該參數定義搜索常規選項。
返回值:該函數返回“true”以將字符串與正則表達式匹配,否則將返回“false”。
示例 1:下麵的代碼演示了PHPmb_ereg_match()函數。
PHP
<?php
$email = "dachman@gmail.com";
$pattern =
'^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$';
if (mb_ereg_match($pattern, $email)) {
echo "The email address is valid.";
} else {
echo "The email address is invalid.";
}
?>
輸出:
The email address is valid.
示例 2:下麵的代碼是另一個例子mb_ereg_match()PHP 的函數。
PHP
<?php
$name = "GeekforGeeks";
// Match Only Characters
$pattern = '^[a-zA-Z]+$';
if (mb_ereg_match($pattern, $name)) {
echo "The name is valid.";
} else {
echo "The name is invalid.";
}
?>
輸出:
The name is valid.
參考: https://www.php.net/manual/en/function.mb-ereg-match.php
相關用法
- PHP mb_ereg_search_regs()用法及代碼示例
- PHP mb_ereg_search_init()用法及代碼示例
- PHP mb_ereg_search_pos()用法及代碼示例
- PHP mb_ereg_search_setpos()用法及代碼示例
- PHP mb_ereg_search()用法及代碼示例
- PHP mb_ereg_replace_callback()用法及代碼示例
- PHP mb_ereg_search_getregs()用法及代碼示例
- PHP mb_ereg_replace()用法及代碼示例
- PHP mb_ereg()用法及代碼示例
- PHP mb_eregi_replace()用法及代碼示例
- PHP mb_eregi()用法及代碼示例
- PHP mb_encode_numericentity()用法及代碼示例
- PHP mb_encoding_aliases()用法及代碼示例
- PHP mb_convert_case()用法及代碼示例
- PHP mb_check_encoding()用法及代碼示例
- PHP mb_strlen()用法及代碼示例
- PHP mb_substr_count()用法及代碼示例
- PHP mb_substr()用法及代碼示例
- PHP mb_substitute_character()用法及代碼示例
- PHP mb_chr()用法及代碼示例
- PHP mb_detect_order()用法及代碼示例
- PHP mb_strtolower()用法及代碼示例
- PHP mb_strtoupper()用法及代碼示例
- PHP mb_str_split()用法及代碼示例
- PHP mb_http_input()用法及代碼示例
注:本文由純淨天空篩選整理自neeraj3304大神的英文原創作品 PHP mb_ereg_match() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。