1 개요[ | ]
- Java ucfirst()
- 자바 ucfirst()
Java
Copy
public class MyClass {
static String ucfirst(String str) {
return str.substring(0, 1).toUpperCase() + str.substring(1);
}
public static void main(String args[]) {
System.out.println( ucfirst("hello world!") ); // Hello world!
System.out.println( ucfirst("HELLO WORLD!") ); // HELLO WORLD!
}
}
2 같이 보기[ | ]
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.