如何查询某个关键字被搜索的次数?

我说的是搜索引擎哦
2025-03-03 20:44:31
推荐回答(1个)
回答1:

start=1
n=0
length=Len(keyword)
Do
temp=Instr(start,string,keyword)
If temp<>0 then
n = n + 1
start=temp+length
Else
Exit Do
Loop
Msgbox n