我試圖將字符串拆分爲2個子字符串。第一個包含前236個字符(0到235),第二個包含從237到字符串末尾的字符。將字符串拆分爲2個不同的子字符串vb.net
firststr = str.Substring(0, 235)
secondstr = str.Substring(235, strLength) 'strLength is the total length of the string
strLength正在產生錯誤:索引和長度必須引用字符串中的位置。 參數名稱:長度
任何幫助?
感謝工作。 –