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 IndexOf()用法及代码示例
- C# String IsNormalized()用法及代码示例
- C# String IsNullOrWhiteSpace()用法及代码示例
- C# String IsNullOrEmpty()用法及代码示例
- C# String IsInterned()用法及代码示例
- C# String ToLower()用法及代码示例
- C# String ToString()用法及代码示例
- C# String Contains()用法及代码示例
- C# String ToCharArray()用法及代码示例
- C# String TrimEnd()用法及代码示例
- C# String Concat()用法及代码示例
- C# String GetTypeCode()用法及代码示例
- C# String Equals()用法及代码示例
- C# String Split()用法及代码示例
- C# String SubString()用法及代码示例
- C# String Normalize()用法及代码示例
- C# String Compare()用法及代码示例
- C# String LastIndexOfAny()用法及代码示例
- C# String EndsWith()用法及代码示例
- C# String Trim()用法及代码示例
注:本文由纯净天空筛选整理自 C# String Insert()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。