想要在变量搜索中替换五个连续的字节。我怎么能这样做?
Last modified Schema Total Rows Total Bytes Expiration
----------------- -------------------------------- ------------ ------------- ------------
06 Jul 16:06:27 |- id: string
|- ...: string
|- ...: string
- > 0000000D0A
我将非常感谢任何帮助。
答案 0 :(得分:0)
如果您的数据存储在字符串中,请使用Substring方法获取您喜欢的字符串部分。
使用您的样本:
0000000D0A
- > 0D0A
有一个问题:我假设你向我们展示了十六进制表示法:
00 00 00 0D 0A
- > 0D 0A
我将此解释为您要删除前3个字节:
// C#
yournewString = youroldString.Substr(3);
' VB.NET
yournewString = youroldString.Substr(3)