[Java 소스] 전위나 후위에 부분 문자열이 있는지 확인하는 예 //전위나 후위에 부분 문자열이 있는지 확인하는 예public class Program { public static void main(String[] args){ String str = "Here is ehpub.co.kr!"; String ex1 = "Here"; String ex2 = "kr!"; if(str.startsWith(ex1)) { System.out.println(ex1+"으로 시작"); } if(str.startsWith(ex2)) { System.out.println(ex2+"으로 시작"); } if(str.endsWith(ex1)) { System.out.println(ex1+"으로 끝남"); } if(str.ends..