當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C# String Remove()用法及代碼示例


C# Remove() 方法用於在從指定的 beginIndex 到給定長度刪除所有字符後獲取新字符串。如果未指定長度,則刪除 beginIndex 之後的所有字符。

簽名

public string Remove(Int32 beginIndex)
public string Remove(Int32 beginIndex, Int32 length)

參數

index:它是一個整數類型參數。

返回

它返回一個字符串。

C# 字符串 Remove() 方法示例

using System; 
    public class StringExample  
    {  
        public static void Main(string[] args)  
        {  
           string s1 = "Hello C#";
           string s2 = s1.Remove(2);
           Console.WriteLine(s2);
       }  
    }

輸出:

He

C# 字符串 Remove() 方法示例 2

using System; 
    public class StringExample  
    {  
        public static void Main(string[] args)  
        {  
        string s1 = "abcdefghijk";
        string s2 = s1.Remove(4, 5);
        Console.WriteLine(s2);
       }  
    }

輸出:

abcdjk




相關用法


注:本文由純淨天空篩選整理自 C# String Remove()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。