C#의 Insert() 메서드는 이 인스턴스의 지정된 인덱스 위치에 지정된 문자열이 삽입된 새 문자열을 반환하는 데 사용됩니다.
구문
구문은 다음과 같습니다 -
public string Insert (int begnIndex, string val);
위에서 매개변수 begnIndex는 0부터 시작하는 삽입 인덱스 위치이고 val은 삽입할 문자열입니다.
예
이제 예를 살펴보겠습니다 -
using System; public class Demo{ public static void Main(){ String str = "JohnWick"; Console.WriteLine("Initial string = "+str); String res = str.Insert(5, " "); Console.WriteLine("Updated = "+res); } }
출력
이것은 다음과 같은 출력을 생성합니다 -
Initial string = JohnWick Updated = JohnW ick
예
이제 다른 예를 살펴보겠습니다.
using System; public class Demo{ public static void Main(){ String str = "WelcomeJacob"; Console.WriteLine("Initial string = "+str); String res = str.Insert(7, " here, "); Console.WriteLine("Updated = "+res); } }
출력
이것은 다음과 같은 출력을 생성합니다 -
Initial string = WelcomeJacob Updated = Welcome here, Jacob