python提取文本英文单词
时间: 2023-06-30 13:05:39 浏览: 450
python提取句中中英文内容
可以使用正则表达式来提取文本中的英文单词。以下是一个示例代码:
```python
import re
text = "This is a sample text with some English words."
words = re.findall(r'\b[A-Za-z]+\b', text)
print(words)
```
输出:
```
['This', 'is', 'a', 'sample', 'text', 'with', 'some', 'English', 'words']
```
这里使用了正则表达式 `\b[A-Za-z]+\b`,其中 `\b`表示单词的边界,`[A-Za-z]+`表示匹配一个或多个字母。`re.findall()`函数返回所有匹配的结果。
阅读全文