주어진 문자열 안에 문자열이 있는지 확인하는 방법을 C#에서는 Contains() 메서드라고 합니다. 해당 문자열 안에 문자열이 있으면 true를 반환하고, 문자열이 없으면 true를 반환합니다. 주어진 문자열에서는 false가 반환되므로 반환 유형은 System입니다. Boolean 및 ArgumentNullException이 발생합니다. 해당 문자열의 발생 여부를 확인해야 하는 입력 문자열이 null이고 해당 문자열의 발생 여부에 대한 문자열 확인은 대소문자 구분을 기준으로 합니다.
구문:
public bool Contains(String string)
여기서 string은 해당 문자열이 포함되어 있는지 확인해야 하는 지정된 문자열입니다.
Bool은 Contains 메서드에서 반환되는 부울 값으로, 해당 문자열이 주어진 문자열 내에 있으면 true로 설정되고, 해당 문자열이 주어진 문자열 내에 없으면 false로 설정됩니다.
다음은 C# Contains()의 예입니다.
주어진 문자열 내에서 해당 문자열의 발생을 찾기 위해 주어진 문자열을 확인하는 Contains() 메서드를 보여주는 C# 프로그램.
코드:
using System; //a class called program is defined public class program { //main method is called public static void Main(string[] args) { //a string variable is used to store the string which will be checked to find the occurrence of another string within it string st1 = "C Sharp"; //another string variable is used to store the string which will be checked for in the given string string st2 = " "; //another string variable is used to store the string which will be checked for in the given string string st3 = "Welcome"; //Contains() method is used to check the string for the occurrence of another string within it Console.WriteLine("If there is occurrence of the string in the given string:{0} ", st1.Contains(st2)); Console.WriteLine("If there is occurrence of the string in the given string:{0} ",st1.Contains(st3)); } }
출력:
설명: 위 프로그램에는 program이라는 클래스가 정의되어 있습니다. 그런 다음 문자열 변수를 사용하여 그 안에 다른 문자열이 있는지 확인하는 문자열을 저장하는 기본 메서드가 호출됩니다. 그런 다음 다른 문자열 변수를 사용하여 첫 번째 문자열에서 검색된 문자열을 저장합니다. 그런 다음 또 다른 문자열 변수를 사용하여 첫 번째 문자열에서 검색된 문자열을 저장합니다. 그런 다음 Contains() 메서드를 사용하여 문자열 내에 다른 문자열이 있는지 확인합니다. 첫 번째 문자열 내에 다른 문자열이 있으면 True가 반환되고, 그 안에 다른 문자열이 없으면 False가 반환됩니다.
주어진 문자열 내에서 해당 문자열이 나타나는지 확인하기 위해 Contains() 메서드를 보여주는 C# 프로그램.
코드:
using System; //a class called program is defined public class program { //main method is called public static void Main(string[] args) { //a string variable is used to store the string which will be checked to find the occurrence of another string within it string st1 = "Welcome to C Sharp"; //another string variable is used to store the string which will be checked for in the given string string st2 = "#"; //another string variable is used to store the string which will be checked for in the given string string st3 = "Welcome"; //Contains() method is used to check the string for the occurrence of another string within it Console.WriteLine("If there is occurrence of the string in the given string:{0} ", st1.Contains(st2)); Console.WriteLine("If there is occurrence of the string in the given string:{0} ",st1.Contains(st3)); } }
출력:
설명: 위 프로그램에는 program이라는 클래스가 정의되어 있습니다. 그런 다음 문자열 변수를 사용하여 그 안에 다른 문자열이 있는지 확인하는 문자열을 저장하는 기본 메서드가 호출됩니다. 그런 다음 다른 문자열 변수를 사용하여 첫 번째 문자열에서 검색된 문자열을 저장합니다. 그런 다음 또 다른 문자열 변수를 사용하여 첫 번째 문자열에서 검색된 문자열을 저장합니다. 그런 다음 Contains() 메서드를 사용하여 문자열 내에 다른 문자열이 있는지 확인합니다. 첫 번째 문자열 내에 다른 문자열이 있으면 True가 반환되고, 그 안에 다른 문자열이 없으면 False가 반환됩니다.
이 튜토리얼에서는 프로그래밍 예제와 출력을 통해 Contains() 메서드 정의, Contains() 메서드 구문, Contains() 메서드 작동을 통해 C#의 Contains() 메서드 개념을 이해합니다.
C# Contains()에 대한 안내입니다. 여기서는 C# Contains() 메서드 소개와 해당 예제 및 코드 구현과 함께 작업하는 방법에 대해 설명합니다. 더 자세히 알아보려면 다른 추천 기사를 살펴보세요. –
위 내용은 C# 포함()의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!