服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|JavaScript|易语言|

服务器之家 - 编程语言 - ASP教程 - ASP计算str2在str1中出现的次数

ASP计算str2在str1中出现的次数

2019-09-27 09:14asp代码网 ASP教程

可以方便计算一个字符串在另一个字符串出现的次数

  1. function CountStr(str1,str2)  
  2.        dim tmp,i,j  
  3.        if str1="" or isnull(str1) then  
  4.                  j=0  
  5.        elseif str2="" or isnull(str2) then  
  6.                  j=1  
  7.        else  
  8.                 tmp=split(str1,str2)  
  9.                 j=0  
  10.                for i=0 to ubound(tmp)  
  11.                           if tmp(i)<>"" then j=j+1  
  12.                next  
  13.         end if  
  14.         countstr=j  
  15. end function 

延伸 · 阅读

精彩推荐