C#截取指定子字符串

在TCP通信中,数据是一直在发的,为了保证我们需要的命令包是完整的,那么一定会有命令头和尾,然后再截取中心的命令数据处理,留下剩下的字符串。

 			string s="qwer[asdf]zxcv";
            int startOps = s.IndexOf("[");
            Console.WriteLine(startOps);
            int endOps = s.IndexOf("]", startOps);
            Console.WriteLine(endOps);
            string dataUnit = s.Substring(startOps, endOps - startOps+1);
            Console.WriteLine(dataUnit);
            string ss=s.Replace(dataUnit, "");
            Console.WriteLine(s);
            Console.WriteLine(ss);
C#中,删除指定长度的字符串可以通过多种方式实现。以下是几种常见的方法: ### 方法一:使用 `Substring` 方法 `Substring` 方法可以用来提取字符串的一部分,从而间接地删除指定长度的字符串。 ```csharp public string RemoveSpecifiedLength(string input, int length) { if (input.Length <= length) { return string.Empty; // 如果输入字符串的长度小于或等于指定长度,返回空字符串 } return input.Substring(length); // 从指定位置开始截取字符串 } ``` ### 方法二:使用 `Remove` 方法 `Remove` 方法可以直接删除指定位置和长度的字符串。 ```csharp public string RemoveSpecifiedLength(string input, int startIndex, int length) { if (startIndex < 0 || startIndex >= input.Length || length < 0) { throw new ArgumentOutOfRangeException(); // 参数检查 } return input.Remove(startIndex, length); // 删除指定位置和长度的字符串 } ``` ### 方法三:使用 `StringBuilder` 如果需要频繁进行字符串操作,可以使用 `StringBuilder` 来提高性能。 ```csharp public string RemoveSpecifiedLength(string input, int startIndex, int length) { if (startIndex < 0 || startIndex >= input.Length || length < 0) { throw new ArgumentOutOfRangeException(); // 参数检查 } var sb = new StringBuilder(input); sb.Remove(startIndex, length); // 删除指定位置和长度的字符串 return sb.ToString(); } ``` ### 示例代码 以下是一个示例程序,演示如何使用上述方法删除指定长度的字符串: ```csharp using System; using System.Text; class Program { static void Main() { string input = "Hello, World!"; int lengthToRemove = 5; // 使用方法一 string result1 = RemoveSpecifiedLength(input, lengthToRemove); Console.WriteLine($"Result using Substring: {result1}"); // 使用方法二 string result2 = RemoveSpecifiedLength(input, 7, lengthToRemove); Console.WriteLine($"Result using Remove: {result2}"); // 使用方法三 string result3 = RemoveSpecifiedLengthUsingStringBuilder(input, 7, lengthToRemove); Console.WriteLine($"Result using StringBuilder: {result3}"); } public static string RemoveSpecifiedLength(string input, int length) { if (input.Length <= length) { return string.Empty; } return input.Substring(length); } public static string RemoveSpecifiedLength(string input, int startIndex, int length) { if (startIndex < 0 || startIndex >= input.Length || length < 0) { throw new ArgumentOutOfRangeException(); } return input.Remove(startIndex, length); } public static string RemoveSpecifiedLengthUsingStringBuilder(string input, int startIndex, int length) { if (startIndex < 0 || startIndex >= input.Length || length < 0) { throw new ArgumentOutOfRangeException(); } var sb = new StringBuilder(input); sb.Remove(startIndex, length); return sb.ToString(); } } ``` 运行以上代码将输出: ``` Result using Substring: , World! Result using Remove: Hello, ! Result using StringBuilder: Hello, ! ``` 希望这些方法对你有所帮助!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值