3个回答
展开全部
是8个空格还是8个连续的空格?
如果是8个连续的空格,就是1楼回答的答案;
如果是8个空格,答案应该是
mid i,j as long
j=0
if len(lable1.caption)>0 then
for i=1 to len(lable1.caption)
if mid(str,i,1)=" " then j=j+1
next
if j=8 then 执行语句
end if
如果是8个连续的空格,就是1楼回答的答案;
如果是8个空格,答案应该是
mid i,j as long
j=0
if len(lable1.caption)>0 then
for i=1 to len(lable1.caption)
if mid(str,i,1)=" " then j=j+1
next
if j=8 then 执行语句
end if
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
'使用代码前,请确保:
'=======================
'已在窗体上添加CommandButton控件一个,名字叫Command1
'已在窗体上添加Label控件一个,名字叫Label1
Private Sub Command1_Click()
If UBound(Split(Label1.Caption, " ")) = 8 Then
MsgBox "有8个空格"
Else
MsgBox "空格没有8个或者多于8个了"
End If
End Sub
Private Sub Form_Load()
Label1.Caption = "1 2 3 4 5 6 7 8 9"
End Sub
'=======================
'已在窗体上添加CommandButton控件一个,名字叫Command1
'已在窗体上添加Label控件一个,名字叫Label1
Private Sub Command1_Click()
If UBound(Split(Label1.Caption, " ")) = 8 Then
MsgBox "有8个空格"
Else
MsgBox "空格没有8个或者多于8个了"
End If
End Sub
Private Sub Form_Load()
Label1.Caption = "1 2 3 4 5 6 7 8 9"
End Sub
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你加语句:
if instr(label1.caption,string(8," "))<>0 then 执行语句···
if instr(label1.caption,string(8," "))<>0 then 执行语句···
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询