正则表达式(Regular Expression)详解
正则表达式(简称 Regex 或 RegExp)是一种文本模式匹配工具,用于在字符串中搜索、替换、提取符合特定规则的文本片段。它的语法简洁但功能强大,广泛应用于编程、文本编辑、日志分析等领域。 C++11官方文档中对正则表达式的介绍如下:
a
匹配字母 a
)。
.
、*
、^
)。
[abc]
)。
+
、?
、{n,m}
)。
()
定义子表达式并捕获内容。
元字符 | 描述 | 示例 |
---|---|---|
. | 匹配除换行符(\n、\r)之外的任何单个字符。要匹配包括 '\n' 在内的任何字符,请使用像"(.|\n)"的模式。 | a.c→"abc"、"a3c" |
^ | 匹配输入字符串的开始位置。如果设置了 RegExp 对象的 Multiline 属性,^ 也匹配 '\n' 或 '\r' 之后的位置。 | ^Hello → "Hello World" 中的 "Hello" |
$ | 匹配输入字符串的结束位置。如果设置了RegExp 对象的 Multiline 属性,$ 也匹配 '\n' 或 '\r' 之前的位置。 | World$ → "Hello World" 中的 "World" |
\ | 将下一个字符标记为一个特殊字符、或一个原义字符、或一个 向后引用、或一个八进制转义符。 | \. → 匹配实际的 . 字符 |
[...] | 字符集合。匹配所包含的任意一个字符。 | [aeiou] → 匹配"plain"中的'a'和'i' |
量词 | 描述 | 示例 |
---|---|---|
* | 匹配前一个元素 0 次或多次 | ab*c → "ac"、"abbc" |
| 匹配前一个元素 1 次或多次 | ab+c → "abc"、"abbc" |
? | 匹配前一个元素 0 次或 1 次 | colou?r → "color"、"colour" |
{n} | 匹配前一个元素恰好 n 次 | a{3} → "aaa" |
{n,} | 匹配前一个元素至少 n 次 | a{2,} → "aa"、"aaaa" |
{n,m} | 匹配前一个元素 n 到 m 次 | a{2,4} → "aa"、"aaaa" |
语法 | 描述 | 等价写法 |
---|---|---|
\d | 匹配数字 | [0-9] |
\D | 匹配非数字 | [^0-9] |
\w | 匹配单词字符(字母、数字、下划线) | [a-zA-Z0-9_] |
\W | 匹配非单词字符 | [^a-zA-Z0-9_] |
\s | 匹配空白符(空格、制表符等) | [ \t\n\r\f\v] |
\S | 匹配非空白符 | [^ \t\n\r\f\v] |
普通分组:()
定义子表达式,并捕获匹配内容。
(\d{4})-(\d{2})-(\d{2}) # 匹配日期 "2023-10-01",捕获年、月、日
非捕获分组:(?:...)
分组但不捕获。
(?:https?|ftp)://([^/]+) # 匹配 URL,但只捕获域名部分
贪婪模式(默认):尽可能匹配更长的文本。
<.*> # 匹配整个 "<div>content</div>" 字符串
非贪婪模式:在量词后加 ?
,匹配尽可能短的文本。
<.*?> # 匹配 "<div>" 和 "</div>" 两个标签
语法 | 描述 | 示例 |
---|---|---|
(?=...) | 正向肯定预查(匹配后面是...的位置) | Windows(?=10)→ 匹配 "Windows10" 中的 "Windows" |
(?!...) | 正向否定预查(匹配后面不是...的位置) | \d{3}(?!\d) → 匹配三位数且后面没有数字 |
(?<=...) | 反向肯定预查(匹配前面是...的位置) | (?<=\$)\d+ → 匹配 "$100" 中的 "100" |
(?<!...) | 反向否定预查(匹配前面不是...的位置) | (?<!-)\d+ → 匹配非负整数 |
^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$
^[a-zA-Z0-9._%+-]+
:用户名部分(允许字母、数字、特殊符号)。
@[a-zA-Z0-9.-]+
:域名部分(如 gmail
、example.co
)。
\.[a-zA-Z]{2,}$
:顶级域名(如 .com
、.org
,至少两个字母)。
<h1>(.*?)</h1> # 非贪婪匹配标签内容
^((25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(25[0-5]|2[0-4]\d|[01]?\d\d?)$
C++11 引入了
<regex>
标准库,提供了对正则表达式的原生支持。以下是 C++11 正则表达式库的详细使用方法。C++官方文档连接:https://legacy.cplusplus.com/reference/regex/
类/组件描述
std::regex
表示一个正则表达式对象,用于编译和存储正则模式。std::smatch
存储字符串的匹配结果(如std::string
的匹配结果)。std::ssub_match
表示一个子匹配项(如捕获组的内容)。std::regex_match
匹配整个字符串是否符合正则模式。std::regex_search
在字符串中搜索符合正则模式的子串。std::regex_replace
替换字符串中符合正则模式的部分。std::regex_iterator
迭代器,用于遍历所有匹配项。std::regex_constants
包含正则表达式选项的命名空间(如忽略大小写、多行模式等)。
1. 正则表达式验证(regex_match
)
#include <iostream>
#include <regex>
#include <string>
bool validate_email(const std::string &email) {
// 正则模式:用户名@域名.顶级域名
std::regex pattern(R"([a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,})");
return std::regex_match(email, pattern);
}
int main() {
std::string email = "user@example.com";
if (validate_email(email)) {
std::cout << "Valid email!" << std::endl;
} else {
std::cout << "Invalid email!" << std::endl;
}
return 0;
}
2. 搜索和提取数据(regex_search
)
#include <iostream>
#include <regex>
#include <string>
void extract_date(const std::string &text) {
std::regex pattern(R"((\d{4})-(\d{2})-(\d{2}))"); // 匹配日期格式YYYY-MM-DD
std::smatch matches;
if (std::regex_search(text, matches, pattern)) {
std::cout << "Full match: " << matches[0] << std::endl;
std::cout << "Year: " << matches[1] << std::endl;
std::cout << "Month: " << matches[2] << std::endl;
std::cout << "Day: " << matches[3] << std::endl;
}
}
int main() {
std::string text = "Event date: 2023-10-05";
extract_date(text);
return 0;
}
3. 替换文本(regex_replace
)
#include <iostream>
#include <regex>
#include <string>
std::string mask_phone(const std::string &phone) {
// 将电话号码中间四位替换为****
std::regex pattern(R"((\d{3})(\d{4})(\d{4}))"); // 匹配11位手机号
return std::regex_replace(phone, pattern, "$1****$3");
}
int main() {
std::string phone = "13812345678";
std::cout << mask_phone(phone) << std::endl; // 输出: 138****5678
return 0;
}
4. 遍历所有匹配项(regex_iterator
)
#include <iostream>
#include <regex>
#include <string>
void find_all_urls(const std::string &text) {
std::regex pattern(R"((https?|ftp)://[^\s/$.?#].[^\s]*)");
auto begin = std::sregex_iterator(text.begin(), text.end(), pattern);
auto end = std::sregex_iterator();
for (std::sregex_iterator i = begin; i != end; ++i) {
std::smatch match = *i;
std::cout << "Found URL: " << match.str() << std::endl;
}
}
int main() {
std::string text = "Visit https://example.com or http://test.org";
find_all_urls(text);
return 0;
}
可以通过 std::regex_constants
中的标志调整正则行为:
标志 | 描述 |
---|---|
std::regex::icase | 忽略大小写 |
std::regex::multiline | 多行模式(^ 和 $ 匹配行首行尾) |
std::regex::ECMAScript | 使用 ECMAScript 语法(默认) |
std::regex::extended | 使用 POSIX 扩展正则语法 |
示例:忽略大小写匹配
std::regex pattern("hello", std::regex::icase);
std::smatch matches;
std::regex_search("HELLO World", matches, pattern); // 匹配成功