如何删除五个连续的字节?

时间:2015-07-06 08:01:50

标签: vb.net

想要在变量搜索中替换五个连续的字节。我怎么能这样做?

  • 我要替换的字节: Last modified Schema Total Rows Total Bytes Expiration ----------------- -------------------------------- ------------ ------------- ------------ 06 Jul 16:06:27 |- id: string |- ...: string |- ...: string - > 0000000D0A

我将非常感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

如果您的数据存储在字符串中,请使用Substring方法获取您喜欢的字符串部分。

使用您的样本:

  • 我要替换的字节:0000000D0A - > 0D0A

有一个问题:我假设你向我们展示了十六进制表示法:

  • 我要替换的字节:00 00 00 0D 0A - > 0D 0A

我将此解释为您要删除前3个字节:

// C#
yournewString = youroldString.Substr(3); 

' VB.NET
yournewString = youroldString.Substr(3)