专栏导读
🌸 欢迎来到Python办公自动化专栏—Python处理办公问题,解放您的双手
🏳️🌈 博客主页:请点击——> 一晌小贪欢的博客主页求关注
👍 该系列文章专栏:请点击——>Python办公自动化专栏求订阅
🕷 此外还有爬虫专栏:请点击——>Python爬虫基础专栏求订阅
📕 此外还有python基础专栏:请点击——>Python基础学习专栏求订阅
文章作者技术和水平有限,如果文中出现错误,希望大家能指正🙏
❤️ 欢迎各位佬关注! ❤️
安装
pip install esmre -i https://pypi.tuna.tsinghua.edu.cn/simple/
安装失败解决方案
-
2、重启电脑(我没有重启),安装成功!!
常见用法1:匹配邮箱
import esm
email_regex = esm.compile(r'\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,}\b')
text = 'My email is abc@example.com'
matches = email_regex.findall(text)
print(matches)
- <h3>输出
['abc@example.com']
常见用法2:查找HTML标签:
import esm
html_regex = esm.compile(r'<[^>]+>')
text = '<p>This is a <b>bold</b> statement.</p>'
matches = html_regex.findall(text)
print(matches)
-
输出
['<p>', '<b>', '</b>', '</p>']
常见用法3:替换URL链接:
import esm
url_regex = esm.compile(r'(https?://\S+)')
text = 'Check out my website at https://www.example.com'
replaced_text = url_regex.sub('URL', text)
print(replaced_text)
-
输出
Check out my website at URL
总结
-
希望对初学者有帮助
-
致力于办公自动化的小小程序员一枚
-
希望能得到大家的【一个免费关注】!感谢
-
求个 🤞 关注 🤞
-
此外还有办公自动化专栏,欢迎大家订阅:Python办公自动化专栏
-
求个 ❤️ 喜欢 ❤️
-
此外还有爬虫专栏,欢迎大家订阅:Python爬虫基础专栏
-
求个 👍 收藏 👍
-
此外还有Python基础专栏,欢迎大家订阅:Python基础学习专栏