代码示例:(标识:python_regex_search_2)
python_regex_search_2.py
import re

str = "China is a great country"
x = re.search("USA", str)
print(x)
运行结果: