개요[ | ]
- Java 문자열을 다뤄본다.
Java
Copy
public class MyClass {
public static void main(String args[]) {
String first_string = "Hello World";
//문자열의 길이 확인하기
String first_string2= "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
System.out.println("The length of the first_string2 string is: " + first_string2.length());
//대문자 전환, 소문자전환
String first_string3 = "Hello World";
System.out.println(first_string3.toUpperCase()); // Outputs "HELLO WORLD"
System.out.println(first_string3.toLowerCase()); // Outputs "hello world"
//문자열내에서 문자열 찾기
String first_string4 = "Please locate where 'locate' occurs!";
System.out.println(first_string4.indexOf("locate")); // Outputs 7
String first = "John";
String last = "Doe";
//문자열 붙이는 방법 1
System.out.println(first + last );
//문자열 붙이는 방법 2
System.out.println(first.concat(last));
}
}
Loading
편집자 에어컨 Jmnote
로그인하시면 댓글을 쓸 수 있습니다.