前端之家收集整理的这篇文章主要介绍了
[VB.NET]vb怎么样在某个字符串中提取动态字符串,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
vb怎么样在某个字符串中
提取动态字符串 比如description: 2007-5-17 冒号后面的日期是动态的,每次都会变。我改怎么样
提取这个字符串呢 __________________________________________________________________________ str.Substring(str.IndexOf( ": ")+1) __________________________________________________________________________ Dim strName As String strName = "description:2007-5-17 " Dim i As Integer For i = strName.Length - 1 To 0 Step -1 '' 从字符串右侧
截取 If strName.Chars(i) = ": " Then Exit For Next Message
Box.Show(strName.Substring(i + 1)) ''取“:”后面的字符 __________________________________________________________________________ Substring __________________________________________________________________________ net_lover的
方法好! __________________________________________________________________________ dim arry() as string Dim strName As String strName = "description:2007-5-17 " arry=strname.split( ": ") Message
Box.Show(arry(1)) __________________________________________________________________________ 学习 __________________________________________________________________________ dim a as string dim b as string a = "description:2007-5-17 " b = a.split( ": ")(1) ''b = 2007-5-17 __________________________________________________________________________
原文链接:https://www.f2er.com/vb/263771.html