VB中如何判断一个字符串,是否等于某个值

dimfile()asstringfile(0)=wordfile(1)=rftfile(2)=excle如何判断哪个file等于word... dim file() as string
file(0)=word
file(1)=rft
file(2)=excle
如何判断哪个file等于word
展开
 我来答
leiyangbdwk
2011-11-24 · TA获得超过3295个赞
知道大有可为答主
回答量:4975
采纳率:12%
帮助的人:4382万
展开全部
你的字符串没有加引号
追问
失误,求帮助啊
追答
那不就解决了吗?
除非你是vb没有入门,否则还有什么需要教你的呢?
---------------------
Dim File(100) As String

Private Sub Form_Load()
File(0) = "1"
File(1) = "22"
File(2) = "dd"
MsgBox (FindString("dd"))
End Sub

Private Function FindString(ByVal S As String) As Integer
Dim I As Integer
Dim Index As Integer
Index = -1
For I = 0 To UBound(File) - 1
If File(I) = S Then
Index = I
Exit For
End If
Next
If Index = -1 Then
MsgBox ("没有找到" & S)
End If

FindString = Index
End Function
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
缓步莫迟疑C
2011-11-24 · TA获得超过1.1万个赞
知道大有可为答主
回答量:6217
采纳率:73%
帮助的人:6490万
展开全部
Dim file(3) as string '如果定义动态数组,在使用Redim定义元素个数以前是不能赋值的.
file(0)="word"
file(1)="rft"
file(2)="excle"
Dim i As Integer
For i = LBound(file) To UBound(file)
If file(i) = "word" Then
Debug.Print i
Exit For
End If
Next
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
合觅山0HFe34
2011-11-24
知道答主
回答量:23
采纳率:0%
帮助的人:8.6万
展开全部
Select Case file
case word
End Select
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式