📜  正则表达式以 python 代码示例结尾

📅  最后修改于: 2022-03-11 14:45:13.899000             🧑  作者: Mango

代码示例1
import re

str = 'Python is a programming language'
#search using regex
x = re.search('language$', str)