重庆分公司,新征程启航

为企业提供网站建设、域名注册、服务器等服务

vb.net文本查找 vb查找方法

vb.net 如何用通配符查找文件

步骤如下:

创新互联专业为企业提供五莲网站建设、五莲做网站、五莲网站设计、五莲网站制作等企业网站建设、网页设计与制作、五莲企业网站模板建站服务,十载五莲做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。

窗体上添加2个列表框,一个按钮:

Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

Dim MyDir As String = "C:\123"

'搜索并显示子文件夹

ListBox1.Items.Clear()

For Each MySubDir As String In System.IO.Directory.GetDirectories(MyDir)

ListBox1.Items.Add(MySubDir)

Next

'搜索并显示文件

ListBox2.Items.Clear()

For Each MyFile As String In System.IO.Directory.GetFiles(MyDir)

ListBox2.Items.Add(MyFile)

Next

End Sub

End Class

VB.NET如何在TextBox中搜索文本

If TextBox1.Text.Contains("@") Then

MsgBox("已找到")

Else

MsgBox("未找到")

End If

在VB.NET中怎么用InputBox实现查找功能

dim str1 ,str2 as string

dim n as integer

str2=inputbox("请输入要查找的字符:")

for n=1 to len(textbox1.text)

str1=mid(textbox1.text,n,1)

if str2=str1 then

msgbox("找到啦!")

exit for

end if

next

if n=len(textbox1.text)+1 then

msgbox("没有你要找的字符!")

end if


本文标题:vb.net文本查找 vb查找方法
文章转载:http://cqcxhl.com/article/dddpsgc.html

其他资讯

在线咨询
服务热线
服务热线:028-86922220
TOP