Java splitメソッドで文字列を分割するサンプル
環境
Java Se 1.8
Eclipse 4.14.0
構文
public String[] split(String regex)
この文字列を、指定された正規表現に一致する位置で分割します。
パラメータ:
regex – 正規表現の区切り
戻り値:
この文字列を指定された正規表現に一致する位置で分割して計算された文字列の配列
使用例
package com.arkgame.test; import java.text.ParseException; public class ArkTest { // 区切文字「/」 private static String FMT = "/"; public static void main(String[] args) throws ParseException { // 対象文字列変数の宣言 String target = "2022/11/12"; String res[] = target.split(FMT); // 分割文字列を出力 for (int i = 0; i < res.length; i++) { System.out.println(res[i]); } } }
実行結果
2022
11
12