C#의 String.Format과 유사한 클래스 함수
Java
MessageFormat.format("[{0}]{1}", "0 입력 문자열", "1 입력 문자열");
public static String format(String pattern, Object ... arguments) {
MessageFormat temp = new MessageFormat(pattern);
return temp.format(arguments);
}
C#
String s = String.Format("The current price is {0} per ounce.", pricePerOunce);
'Java' 카테고리의 다른 글
자바 Jpa Entity -> Sql Default Value (0) | 2022.09.21 |
---|---|
자바 Jpql dynamic query (1) | 2022.09.21 |
자바 비밀번호 생성(금융보안원) (1) | 2022.05.10 |
자바 프로그래머스 위클리 챌린지 8주차 (0) | 2021.10.01 |
자바 임의 값 0~100 랭크 구하기 (0) | 2021.09.16 |