「Java」split()で文字列を分割するサンプル
説明
split(String regex)
この文字列を、指定された正規表現に一致する位置で分割します。
javaコード
package com.study.arkgame; public class SplitDemo { public static void main(String[] args) { String tar = new String("study-skill-in-arkgame.com"); System.out.println("戻り値1:"); for (String retval : tar.split("-", 2)) { System.out.println(retval); } System.out.println(""); System.out.println("戻り値2:"); for (String retval : tar.split("-", 3)) { System.out.println(retval); } System.out.println(""); System.out.println("戻り値3:"); for (String retval : tar.split("-", 0)) { System.out.println(retval); } System.out.println(""); System.out.println("戻り値4:"); for (String retval : tar.split("-")) { System.out.println(retval); } } }
実行結果
戻り値1:
study
skill-in-arkgame.com
戻り値2:
study
skill
in-arkgame.com
戻り値3:
study
skill
in
arkgame.com
戻り値4:
study
skill
in
arkgame.com