質問編集履歴
1
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
|
11
11
|
```正規表現
|
12
12
|
|
13
|
-
\A(aiueo|popopo|hoge)\z
|
13
|
+
/\A(aiueo|popopo|hoge)\z/
|
14
14
|
|
15
15
|
```
|
16
16
|
|
@@ -22,6 +22,6 @@
|
|
22
22
|
|
23
23
|
```正規表現
|
24
24
|
|
25
|
-
\A(|aiueo|popopo|hoge)\z
|
25
|
+
/\A(|aiueo|popopo|hoge)\z/
|
26
26
|
|
27
27
|
```
|