String 클래스에는 문자열 개체를 처리하는 데 도움이 되는 다양한 메서드가 있습니다. 다음 표에는 가장 일반적으로 사용되는 메소드 중 일부가 나열되어 있습니다.
Sr은 지정된 문자열 객체를 가져와 정렬 순서에서 상대적 위치를 나타내는 정수를 반환합니다. | |
---|---|
public static int Compare(string strA, string strB, boolignoreCase) | 두 개의 지정된 문자열 개체를 비교하고 정렬 순서에서 상대적 위치를 나타내는 정수를 반환합니다. 그러나 부울 매개변수가 true인 경우 대소문자는 무시됩니다. |
public static string Concat(string str0, string str1) | strong>두 개의 문자열 개체를 연결합니다. |
public static string Concat(string str0, string str1, string str2) |
세 개의 문자열 개체를 연결합니다.
|
Public static String Concat(String str0, String str1, String str2, String str3) | 4개의 문자열 개체를 연결합니다. |
public bool Contains(string value) | 지정된 String 객체가 이 문자열에 나타나는지 여부를 나타내는 값을 반환합니다. |
public static string Copy(string str) | 지정된 값과 동일한 값을 가진 새 String 객체 문자열을 생성합니다. |
public void CopyTo(int sourceIndex, char[] Destination, int DestinationIndex, int count) |
String 객체의 지정된 위치에서 지정된 수의 문자를 유니코드 문자 배열로 복사합니다. 위치를 지정하세요.
|
public bool EndsWith(문자열 값) | 문자열 객체의 끝이 지정된 문자열과 일치하는지 확인합니다. |
public bool equals(string value) | 현재 String 개체와 지정된 String 개체가 동일한 값을 갖는지 확인합니다. |
public static bool Equals(string a, string b) | 지정된 두 String 개체가 동일한지 확인 |
예 | using System; namespace Demo { class Program { static void Main(string[] args) { string str = "This is test"; if (str.Contains("test")) { Console.WriteLine("Yes, 'test' was found."); } Console.ReadKey() ; } } } 로그인 후 복사 |
위 내용은 C# 문자열 메서드의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!