Java
1コード 2指定の文字列がバイト数になるまで左側に指定文字を埋めた文字列を返します。
public class TatsukiJavaTest6 {
public static void main(String[] args) {
System.out.println(TatsukiJavaTest6.leftPad("text", 10,'¥'));
public static boolean isNumeric(String value){
try {
Integer.parseInt(value);
return true;
} catch (NumberFormatException e) {
return false;
}
}
public static String leftPad(String text, int byteSize, char padChar) { /** * 指定の文字列がバイト数になるまで左側に指定文字を埋めた文字列を返します。 * @param text 文字列 * @param byteSize バイト数 * @param padChar 埋める文字 * @return バイト数まで左側に文字を埋めた文字列 */ String.format("%byteSized",text); String.format("% 'padChar' d",text); return text;
エラーコード
java.util.UnknownFormatConversionException: Conversion = ' '
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/19 02:47