ASP里头的SPLIT函数在VB .NET里怎么使用???? 急急急急急急急ASP里头的SPLIT函数在VB.NET里怎么使用????[解
ASP里头的SPLIT函数在VB .NET里怎么使用???? 急急急急急急急
ASP里头的SPLIT函数在VB .NET里怎么使用????
[解决办法]
Dim str As String = "255.255.255.0 "
Dim var() As String = str.Split( ". ")
MsgBox(var.Length.ToString)
MsgBox(var(0).ToString)
