VB.NET 怎么获取txt特定字段后的内容?
比如有一个"D:\Demo.txt"文件,里边的内容为:profile=demo1document=\doc\demo2.docx点击button1后如何将"profil...
比如有一个"D:\Demo.txt"文件,里边的内容为:
profile=demo1
document=\doc\demo2.docx
点击button1后如何将"profile="后边的内容写进Textbox1.Text中? 展开
profile=demo1
document=\doc\demo2.docx
点击button1后如何将"profile="后边的内容写进Textbox1.Text中? 展开
展开全部
Dim str As String = My.Computer.FileSystem.ReadAllText("D:\Demo.txt")
Dim str_search As String = "profile=" '定义要搜索的字符串
TextBox1.Text = str.Substring(InStr(str, str_search) + str_search.Length - 1)
追问
非常感谢, 还有一个问题:如果无法确定等号两边是否有空格, 要如何忽略掉空格呢?另外,能否对"Profile"忽略掉大小写。谢谢
追答
等号左边空格必须确定,因为占位需要,等号右边空格可以在得到字符串后用 LTrim方法去掉字符串左边前导空格
或者根据实际 Dim str_search As String = "=" '定义要搜索的字符串
意思是直接搜索到第一个等号即可
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询