使用System.StringSplitOptions去除待拆分字符串中的空项



程序代码:

        Dim s As String = "0,1,2,"
        Dim res As String() = s.Split(New Char() {","}, StringSplitOptions.RemoveEmptyEntries)
        Dim res1 As String() = s.Split(New Char() {","})
        For Each str As String In res
            MsgBox(str)
        Next
        MsgBox(res.Length)
        For Each str As String In res1
            MsgBox(str)
        Next
        MsgBox(res1.Length)


"0,1,2,"   split 之后为“0”、“1”、“2”、“”
使用,StringSplitOptions.RemoveEmptyEntries,可以清除最后一个“”空字符串



判断访问网页的是电脑还是手机

File.ReadAllText 读取中文乱码问题

欢迎关注微信公众账号ByCAD