次のようなJavaの文字列があります。
holdingco^(218) 333-4444^scott@holdingco.com
それに等しい文字列変数を設定します。
String value = "holdingco^(218) 333-4444^scott@holdingco.com";
次に、この文字列をコンポーネントに分割します。
String[] components = value.split("^");
ただし、文字列は分割されません。ニンジン区切り文字を無駄にエスケープしようとしました。