回答編集履歴
1
chousei
answer
CHANGED
@@ -2,5 +2,5 @@
|
|
2
2
|
$input = "abc12345defg67";
|
3
3
|
$pattern="/[a-z]|[0-9]+/";
|
4
4
|
preg_match_all($pattern,$input,$output);
|
5
|
-
print_r($output);
|
5
|
+
print_r($output[0]);
|
6
6
|
```
|