質問編集履歴
1
処理イメージの詳細を書きました
test
CHANGED
File without changes
|
test
CHANGED
@@ -20,4 +20,28 @@
|
|
20
20
|
|
21
21
|
BBB
|
22
22
|
|
23
|
-
を
|
23
|
+
を取り出したいです。
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
String target = "\"AAAA\"\"BBB\""; <= 「"AAAA""BBB"」という文字列です
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
String[] result;
|
36
|
+
|
37
|
+
~~~~~~~
|
38
|
+
|
39
|
+
処理
|
40
|
+
|
41
|
+
~~~~~~~
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
System.out.println(result[0]); => AAAA が出力される
|
46
|
+
|
47
|
+
System.out.println(result[1]); => BBB が出力される
|