首页 > 专家说

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

来源:新能源网
时间:2024-08-17 13:18:12
热度:

如何查询某个关键字被搜索的次数?【专家解说】:start=1
n=0
length=Len(keyword)
Do
temp=Instr(start,string,keyword)

【专家解说】: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