如何在VB中每隔7个字符分割一个字符串

时间:2015-05-21 22:41:13

标签: vb.net

我在尝试找出语法时遇到了困难。我在变量中有一行二进制文件,我想知道如何每隔7个字符拆分该字符串,这样我就可以将它放在ascii表中以找到它的等价物。

1 个答案:

答案 0 :(得分:0)

根据您的方案,您还可以执行子字符串以满足您的要求。

Dim theString As String = "w3rs0fd90as90f9sda0faf"

Dim FirstSevenCharacters as String= theString.Substring(0, 7)

Dim CharactersAfterTheFirstSeven as String= theString.Substring(7, theString.Length - 7)