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

C#의 Char.IsLowSurrogate(String, Int32) 메서드

<시간/>

C#의 Char.IsLowSurrogate() 메서드는 문자열의 지정된 위치에 있는 Char 개체가 하위 서로게이트인지 여부를 나타냅니다.

구문

다음은 구문입니다 -

public static bool IsLowSurrogate (string str, int index);

위에서 str은 문자열이고 index는 str에서 평가할 문자의 위치입니다.

이제 Char.IsLowSurrogate() 메서드를 구현하는 예를 살펴보겠습니다. -

using System;
public class Demo {
   public static void Main(){
      string str = new String(new char[] { 'k', 'm', 'g', 't', 'j', 'p', '\uDC00' });
      bool res = Char.IsLowSurrogate(str, 6);
      if (res)
         Console.WriteLine("Contains Low Surrogate value!");
      else
         Console.WriteLine("Does not contain Low Surrogate value!");
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

Contains Low Surrogate value!

이제 다른 예를 살펴보겠습니다 -

using System;
public class Demo {
   public static void Main(){
      string str = new String(new char[] { 'k', 'm', 'g', 't', 'j', 'p', '\uDC00' });
      bool res = Char.IsLowSurrogate(str, 3);
      if (res)
         Console.WriteLine("Contains Low Surrogate value!");
      else
         Console.WriteLine("Does not contain Low Surrogate value!");
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

Does not contain Low Surrogate value!