西门子200编程中如何快速判断符号重复
发布网友
发布时间:2022-05-15 09:14
我来回答
共2个回答
热心网友
时间:2023-10-17 05:57
1:利用len函数
declare @a varchar(20)
set @a='adfarghbaaf'
select len(@a)- len(replace(@a,'a',''))
2:自定义一个函数
create function fn_str_times
(
@str varchar(1000),--原子符串
@indexstr varchar(20)--查找的字符
)
returns int
as
begin
declare @findlen int
declare @times int
set @findlen=LEN(@indexstr)
set @times=0
while(charindex(@indexstr,@str))>0
BEGIN
set @str=SUBSTRING(@str,CHARINDEX(@indexstr,@str)+@findlen,len(@str))
set @times=@times+1
end
return @times
end
select dbo.fn_str_times('adfarghbaaf','a')as 出现次数追问谢谢,我问的是PLC编程
热心网友
时间:2023-10-17 05:58
轨迹模拟呀,追问不太明白,还请多描述几句