对于给定的一个字符串,统计其中数字字符出现的次数。
时间: 2023-11-17 14:06:14 浏览: 152
可以遍历字符串中的每一个字符,判断是否为数字字符,如果是则计数器加1,最后返回计数器的值即可。
Python 代码示例:
```python
def count_digits(s):
count = 0
for c in s:
if c.isdigit():
count += 1
return count
```
测试代码:
```python
s = "hello123world456"
print(count_digits(s)) # 输出:6
```
阅读全文