관리 메뉴

커리까지

[생활코딩] JAVA1 - 6.5. 문자열 다루기 본문

자바

[생활코딩] JAVA1 - 6.5. 문자열 다루기

목표는 커리 2021. 3. 30. 05:02
728x90
SMALL
public class Strings {

    public static void main(String[] args) {

        System.out.println("hello world".length()); //11
        System.out.println("hello pengsu".replace("pengsu","hi"));

    }

}
  • .replace("pengsu","hi") : 텍스트 교체 , 앞문자를 뒷 문자로 교체
728x90
LIST
Comments