質問編集履歴
2
タイトル修正
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
c#
|
1
|
+
c# 取り下げのため質問修正
|
test
CHANGED
@@ -1,51 +1,13 @@
|
|
1
|
-
```c#
|
2
|
-
|
3
|
-
|
1
|
+
質問取り下げのため修正
|
4
|
-
|
5
|
-
using System.Collections.Generic;
|
6
|
-
|
7
|
-
using System.Linq;
|
8
|
-
|
9
|
-
using System.Text;
|
10
|
-
|
11
|
-
using System.Threading.Tasks;
|
12
2
|
|
13
3
|
|
14
4
|
|
15
|
-
namespace test
|
16
|
-
|
17
|
-
{
|
18
|
-
|
19
|
-
class Program
|
20
|
-
|
21
|
-
{
|
22
|
-
|
23
|
-
static void Main(string[] args)
|
24
|
-
|
25
|
-
{
|
26
5
|
|
27
6
|
|
28
7
|
|
29
|
-
string str = "AAAA OR BBBB";
|
30
8
|
|
9
|
+
```c#
|
31
10
|
|
32
|
-
|
33
|
-
string pattern = " OR ";
|
34
|
-
|
35
|
-
string[] arr = str.Split(' OR ');
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
Console.WriteLine("{0}", string.Join(",", arr));
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
11
|
+
質問取り下げのため修正
|
44
|
-
|
45
|
-
}
|
46
|
-
|
47
|
-
}
|
48
|
-
|
49
|
-
}
|
50
12
|
|
51
13
|
```
|
1
タイトル修正
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
c#
|
1
|
+
c# 文字列分割の修正
|
test
CHANGED
@@ -1,19 +1,3 @@
|
|
1
|
-
"AAAA OR BBBB"
|
2
|
-
|
3
|
-
"AAAA OR BBBB OR CCCC"
|
4
|
-
|
5
|
-
"AAAA or BBBB"
|
6
|
-
|
7
|
-
などの文字列が来た際に、" OR "もしくは" or "で切り分けて、
|
8
|
-
|
9
|
-
AAAA, BBBB, CCCCの文字列を取得したいのですが、やり方がわからずご教授ください。
|
10
|
-
|
11
|
-
" OR " は" OR "のようにスペースが1個以上入る想定です。
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
1
|
```c#
|
18
2
|
|
19
3
|
using System;
|