Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

문자열을 분할하고 결합하는 C# 프로그램


C#에서 문자열을 분할하고 결합하려면 split() 및 join() 메서드를 사용하십시오. 다음이 우리의 문자열이라고 가정해 봅시다 -

string str = "This is our Demo String";

문자열을 분할하려면 split() 메서드를 사용합니다 -

var arr = str.Split(' ');

이제 조인하려면 조인() 메서드를 사용하고 나머지 문자열을 조인하십시오. 여기에서 skip() 메소드를 사용하여 문자열의 일부를 건너뛰었습니다 -

string rest = string.Join(" ", arr.Skip(1));

예시

C#에서 다음 코드를 실행하여 문자열을 분할하고 결합할 수 있습니다.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Demo {
   class MyApplication {
      static void Main(string[] args) {
         string str = "This is our Demo String";
         var arr = str.Split(' ');
         // skips the first element and joins rest of the array
         string rest = string.Join(" ", arr.Skip(1));
         Console.WriteLine(rest);
      }
   }
}

출력

is our Demo String