当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# String Insert()用法及代码示例


C# Insert() 方法用于在指定的索引号处插入指定的字符串。索引号从0开始,插入指定的字符串后,返回一个新的修改后的字符串。

签名

public string Insert(Int32 first, String second)

参数

first:它用于作为索引传递。

second:它用于在指定的索引处插入给定的字符串。

返回

它返回一个新的修改后的字符串。

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

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

输出:

Hello- C#




相关用法


注:本文由纯净天空筛选整理自 C# String Insert()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。