Python 正则表达式函数
正则表达式函数
The re
模块提供了一组函数,允许我们在字符串中搜索匹配项
函数 | 描述 |
---|---|
findall | 返回包含所有匹配项的列表 |
search | 如果字符串中存在匹配项,则返回一个 匹配对象 |
split | 返回一个列表,其中字符串在每个匹配项处被分割 |
sub | 用字符串替换一个或多个匹配项 |
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]