回答編集履歴
2
typo
test
CHANGED
@@ -34,6 +34,10 @@
|
|
34
34
|
|
35
35
|
testtest
|
36
36
|
|
37
|
+
$ echo "" | egrep '^(test|sample|)+$'
|
38
|
+
|
39
|
+
|
40
|
+
|
37
41
|
$ echo "testtestsample" | egrep '^(test|sample|)+$'
|
38
42
|
|
39
43
|
testtestsample
|
1
追記
test
CHANGED
@@ -11,3 +11,35 @@
|
|
11
11
|
test
|
12
12
|
|
13
13
|
```
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
----
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
> 色々と試してみれば、一発ですね。
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
では、あとでみたヒトのために追記しておきます。
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
```
|
30
|
+
|
31
|
+
$ echo " test " | egrep '^(test|sample|)+$'
|
32
|
+
|
33
|
+
$ echo "testtest" | egrep '^(test|sample|)+$'
|
34
|
+
|
35
|
+
testtest
|
36
|
+
|
37
|
+
$ echo "testtestsample" | egrep '^(test|sample|)+$'
|
38
|
+
|
39
|
+
testtestsample
|
40
|
+
|
41
|
+
$ echo "testtestsampletest" | egrep '^(test|sample|)+$'
|
42
|
+
|
43
|
+
testtestsampletest
|
44
|
+
|
45
|
+
```
|