变量数据类型是字符串。它包含大于 300 个字符的字符串值。我想将该字符串拆分为 150 个字符并使用 vb.net 存储在字符串数组中
我的代码:
msg = t1("fld_msg")
msg1 = msg.Length
For i = 0 To msg.Length - 1
strarr = msg.Substring(0, 150)
Next
错误:
value of type string cant be converted into one dimensional array