python 正则提取文本中第一个大写字母
时间: 2023-11-11 17:04:57 浏览: 144
python利用正则表达式提取字符串
可以使用 Python 的正则表达式模块 `re` 来实现该功能,具体代码如下:
```python
import re
text = "Hello, world!"
match = re.search(r"[A-Z]", text)
if match:
print("第一个大写字母是:", match.group())
else:
print("文本中没有大写字母")
```
该代码首先定义了一个字符串 `text`,然后使用正则表达式 `[A-Z]` 来匹配文本中的第一个大写字母,如果匹配成功,则输出该大写字母;否则输出“文本中没有大写字母”。
阅读全文