모음으로 시작하는 단어를 찾으려면 −
String 클래스의 split() 메서드 주어진 문자열을 문자열 배열로 분할하려면 String 클래스의 Split() 메서드를 사용합니다.
for 루프에서 얻은 배열의 각 단어를 탐색합니다.
charAt() 메서드를 사용하여 얻은 배열에서 각 단어의 첫 번째 문자를 가져옵니다.
if 루프를 사용하여 문자가 모음과 같은지 확인하고 그렇다면 단어를 인쇄하세요.
다음 내용을 포함하는 텍스트 파일이 있다고 가정합니다. −
Tutorials Point originated from the idea that there exists a class of readers who respond better to on-line content and prefer to learn new skills at their own pace from the comforts of their drawing rooms.
다음 Java 프로그램은 이 파일에서 모음으로 시작하는 모든 단어를 인쇄합니다.
import java.io.File; import java.util.Scanner; public class WordsStartWithVowel { public static String fileToString(String filePath) throws Exception { Scanner sc = new Scanner(new File(filePath)); StringBuffer sb = new StringBuffer(); String input = new String(); while (sc.hasNextLine()) { input = sc.nextLine(); sb.append(input); } return sb.toString(); } public static void main(String args[]) throws Exception { String str = fileToString("D:\sample.txt"); String words[] = str.split(" "); for(int i = 0; i < words.length; i++) { char ch = words[i].charAt(0); if(ch == 'a'|| ch == 'e'|| ch == 'i' ||ch == 'o' ||ch == 'u'||ch == ' ') { System.out.println(words[i]); } } } }
originated idea exists a of on-line and at own of
위 내용은 Java에서 모음으로 시작하고 길이가 n인 모든 단어를 어떻게 추출할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!