用函数统计字符串中单词的个数
时间: 2024-03-24 08:13:36 浏览: 58
判断字符串中的单词个数
4星 · 用户满意度95%
好的,这是一个技术问题,我可以为您提供答案。
以下是一段 Python 代码,利用正则表达式实现统计字符串中单词的个数:
```python
import re
def count_words(text):
words = re.findall(r'\w+', text)
return len(words)
```
使用示例:
```python
text = 'Hello World! This is a sample text.'
print(count_words(text)) # 输出 7
```
请注意,这段代码仅适用于英文字符串,对于其他语言可能需要相应地修改正则表达式。
阅读全文