SeouliteLab

[Java/자바] 문자열 첫번째 문자, 마지막 문자 확인 본문

프로그래밍

[Java/자바] 문자열 첫번째 문자, 마지막 문자 확인

Seoulite Lab 2024. 3. 7. 08:50

Java에서 문자열의 첫 번째 문자와 마지막 문자를 확인하는 방법을 알아보겠습니다. 문자열은 문자의 배열이므로 첫 번째 문자는 인덱스 0에 위치하고, 마지막 문자는 문자열의 길이에서 1을 뺀 인덱스에 위치합니다.

1. 문자열의 첫 번째 문자 확인

문자열의 첫 번째 문자를 확인하기 위해서는 charAt() 메서드를 사용하고 인덱스 0을 전달합니다.

예제 1. 문자열의 첫 번째 문자 확인

// 사용되는 디렉토리: src/com/example
// 파일명: FirstCharExample.java

public class FirstCharExample {
    public static void main(String[] args) {
        String str = "Hello, World!";

        // 첫 번째 문자 확인
        char firstChar = str.charAt(0);

        // 출력
        System.out.println("첫 번째 문자: " + firstChar);
    }
}

2. 문자열의 마지막 문자 확인

문자열의 마지막 문자를 확인하기 위해서는 문자열의 길이에서 1을 뺀 인덱스를 charAt() 메서드에 전달합니다.

예제 2. 문자열의 마지막 문자 확인

// 사용되는 디렉토리: src/com/example
// 파일명: LastCharExample.java

public class LastCharExample {
    public static void main(String[] args) {
        String str = "Hello, World!";

        // 마지막 문자 확인
        char lastChar = str.charAt(str.length() - 1);

        // 출력
        System.out.println("마지막 문자: " + lastChar);
    }
}

3. 문자열의 첫 번째 문자와 마지막 문자를 동시에 확인

문자열의 첫 번째 문자와 마지막 문자를 한 번에 확인할 수 있습니다.

예제 3. 문자열의 첫 번째 문자와 마지막 문자 확인

// 사용되는 디렉토리: src/com/example
// 파일명: FirstLastCharExample.java

public class FirstLastCharExample {
    public static void main(String[] args) {
        String str = "Hello, World!";

        // 첫 번째 문자 확인
        char firstChar = str.charAt(0);

        // 마지막 문자 확인
        char lastChar = str.charAt(str.length() - 1);

        // 출력
        System.out.println("첫 번째 문자: " + firstChar);
        System.out.println("마지막 문자: " + lastChar);
    }
}

4. 대문자로 변환한 첫 번째 문자 확인

문자열의 첫 번째 문자를 대문자로 변환하여 확인할 수 있습니다.

예제 4. 대문자로 변환한 첫 번째 문자 확인

// 사용되는 디렉토리: src/com/example
// 파일명: FirstUpperCaseExample.java

public class FirstUpperCaseExample {
    public static void main(String[] args) {
        String str = "hello, world!";

        // 첫 번째 문자 대문자로 변환
        char firstCharUpper = Character.toUpperCase(str.charAt(0));

        // 출력
        System.out.println("첫 번째 문자(대문자): " + firstCharUpper);
    }
}

5. 문자열이 비어 있는지 확인

문자열이 비어 있는지 확인하여 첫 번째 문자를 안전하게 확인할 수 있습니다.

예제 5. 문자열이 비어 있는지 확인하여 첫 번째 문자 확인

// 사용되는 디렉토리: src/com/example
// 파일명: EmptyStringExample.java

public class EmptyStringExample {
    public static void main(String[] args) {
        String str = "";

        if (!str.isEmpty()) {
            // 첫 번째 문자 확인
            char firstChar = str.charAt(0);
            System.out.println("첫 번째 문자: " + firstChar);
        } else {
            System.out.println("문자열이 비어 있습니다.");
        }
    }
}

6. 문자열의 길이가 1인 경우 첫 번째 문자 확인

문자열의 길이가 1인 경우에도 첫 번째 문자를 확인할 수 있습니다.

예제 6. 문자열의 길이가 1인 경우 첫 번째 문자 확인

// 사용되는 디렉토리: src/com/example
// 파일명: SingleCharStringExample.java

public class SingleCharStringExample {
    public static void main(String[] args) {
        String str = "A";

        // 첫 번째 문자 확인
        char firstChar = str.charAt(0);
        System.out.println("첫 번째 문자: " + firstChar);
    }
}