문자열 클래스는 문자열을 나타내는 데 사용할 수 있으며 Java 프로그램의 모든 문자열 리터럴은 String 클래스의 인스턴스로 구현됩니다. . 문자열은 상수입니다. 값을 변경할 수 없습니다(불변 ) 한 번 생성되었습니다.
아래 프로그램을 사용하여 문자열에서 각 단어의 첫 번째 문자를 인쇄할 수 있습니다.
예시
public class FirstCharacterPrintTest { public static void main(String[] args) { String str = "Welcome To Tutorials Point"; char c[] = str.toCharArray(); System.out.println("The first character of each word: "); for (int i=0; i < c.length; i++) { // Logic to implement first character of each word in a string if(c[i] != ' ' && (i == 0 || c[i-1] == ' ')) { System.out.println(c[i]); } } } }
출력
The first character of each word: W T T P