请输入您要查询的百科知识:

 

词条 StrSubCount
释义

函数功能

返回某字符在字符串中的个数

函数说明

function StrSubCount(const Source,Sub:string):integer; //判断某字符在字符串中的个数

var Buf:string;

Len,i:integer;

begin

Result:=0;

Buf:=Source;

i:=Pos(Sub, Buf);

Len:=Length(Sub);

while i <> 0 do

begin

Inc(Result);

Delete(Buf,1,i+Len-1);

i:=Pos(Sub,Buf);

end;

end;

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/12/24 0:11:19