Java混同の方法整理


整理方法の種類.
toString(); オブジェクトの最上位クラスのメソッドは常に存在します!
trim(); スペースがありません!しかし、両サイドの前後だけを取り除く!
substring(3):文字が切り捨てられ、インデックス3から表示されます.
substring(3,5):3番目から5번째 전に切り取ります.
substr(0, 2); 最初から2長さにカットします.
split("-");
// 자바 8버전 join
String requestDate = "2021-08-01";
String[] requestDateArr = requestDate.split("-");
join("", a); : aは""を基準とする.分裂と反概念
String joins = String.join("|", peoples); // 사실 이게 더 불편한데 알아두면 좋을 것!
System.out.println("joins: "+ joins);
// joins: 홍길동|김과장|이명기|최과장
replace(a, b); : 「a」を「b」に置き換える
requestDate = requestDate.replace("-", "");
System.out.println("requestDate: "+ requestDate);
replaceAll( regex , b); : デフォルトのreplace()+regexコンテンツを「b」に変換できます.
indexOf(1); 最初の文字列の抽出
インデックスオブジェクトオブジェクトのインデックス抽出//「文字列」.主にindexOfとして使用されます(「文字を検索」)
charAt();
		char a = '닳';
        String letter = "동해 물과 백두산이 마르고 닳도록  하느님이 보우하사 우리나라 만세";
     
        int loc = letter.indexOf(a);    // 15
        char b = letter.charAt(loc);    // 닳
contains(a); : 「a」が含まれているかどうかを確認します
str.contains("안녕"); // boolean 값
Ceil():無条件に小数位数を上げる関数
isBefore() & isAfter()
        LocalDate a = LocalDateTime.of(2012, 6, 30, 12, 00);
        LocalDate b = LocalDateTime.of(2012, 7, 1, 12, 00);
        a.isBefore(b) == true
        a.isBefore(a) == false
        b.isBefore(a) == false