이 기사에서는 문자열에 하위 문자열이 포함되어 있는지 확인하는 방법을 이해합니다. 문자열은 하나 이상의 문자를 포함하고 큰따옴표(" ")로 묶인 데이터 유형입니다. 문자열의 일부 또는 하위 집합을 부분 문자열이라고 합니다.
아래는 동일한 데모입니다 -
입력이 다음과 같다고 가정 -
The first substring is defined as: Java The second substring is defined as: C++
원하는 출력은 -
The substring: Java is a part of the defined string. The substring: C++ is not a part of the defined string.
알고리즘
Step 1 - START Step 2 - Declare three string namely input_string, sub_string_1, sub_string_2 Step 3 - Define the values. Step 4 - Use the function .contains() to check if the string contains the substring. Step 5 - Display the result Step 6 - Stop
예시 1
여기에서 모든 작업을 'main' 기능 아래에 묶습니다.
public class Demo { public static void main(String[] args) { String input_string = "Java Programming"; System.out.println("The input string is defined as: " +input_string); String sub_string_1 = "Java"; System.out.println("The first substring is defined as: " +sub_string_1); String sub_string_2 = "C++"; System.out.println("The second substring is defined as: " +sub_string_2); boolean result = input_string.contains(sub_string_1); if(result) { System.out.println("The substring: " +sub_string_1 + " is a part of the defined string."); } else { System.out.println("The substring: " +sub_string_1 + " is not a part of the defined string."); } result = input_string.contains(sub_string_2); if(result) { System.out.println("The substring: " +sub_string_2 + " is a part of the defined string."); } else { System.out.println("The substring: " +sub_string_2 + " is not a part of the defined string."); } } }
출력
The input string is defined as: Java Programming The first substring is defined as: Java The second substring is defined as: C++ The substring: Java is a part of the defined string. The substring: C++ is not a part of the defined string.
예시 2
여기에서 객체 지향 프로그래밍을 나타내는 함수로 작업을 캡슐화합니다.
public class Demo { static void check_substring(String input_string, String sub_string_1, String sub_string_2){ boolean result = input_string.contains(sub_string_1); if(result) { System.out.println("The substring: " +sub_string_1 + " is a part of the defined string."); } else { System.out.println("The substring: " +sub_string_1 + " is not a part of the defined string."); } result = input_string.contains(sub_string_2); if(result) { System.out.println("The substring: " +sub_string_2 + " is a part of the defined string."); }else { System.out.println("The substring: " +sub_string_2 + " is not a part of the defined string."); } } public static void main(String[] args) { String input_string = "Java Programming"; System.out.println("The input string is defined as: " +input_string); String sub_string_1 = "Java"; System.out.println("The first substring is defined as: " +sub_string_1); String sub_string_2 = "C++"; System.out.println("The second substring is defined as: " +sub_string_2); check_substring(input_string, sub_string_1, sub_string_2); } }
출력
The input string is defined as: Java Programming The first substring is defined as: Java The second substring is defined as: C++ The substring: Java is a part of the defined string. The substring: C++ is not a part of the defined string.