从终端随机输入字符串1和字符串2,统计字符串1中字符串2出现的次数
时间: 2024-10-13 07:09:21 浏览: 15
要完成这个任务,你可以使用编程语言如Python编写一个简单的脚本。下面是一个简短的示例,说明如何在Python中实现:
```python
def count_occurrences():
# 从终端获取用户输入
string1 = input("请输入字符串1: ")
string2 = input("请输入字符串2: ")
# 使用count()函数计算并返回计数
occurrence_count = string1.count(string2)
if occurrence_count > 0:
print(f"字符串{string2}在字符串{string1}中出现了{occurrence_count}次.")
else:
print(f"字符串{string2}在字符串{string1}中未出现.")
# 调用函数
count_occurrences()
```
在这个程序中,`input()`函数用于接收用户的输入,然后`count()`函数用于计算字符串`string1`中`string2`出现的次数。如果`count()`大于0,则表示找到了匹配,否则表示没找到。
阅读全文