回答編集履歴
1
誤植
answer
CHANGED
@@ -24,7 +24,7 @@
|
|
24
24
|
var matchA = Regex.Match(target, @"A\d{6}");
|
25
25
|
if (matchA.Success)
|
26
26
|
{
|
27
|
-
Debug.WriteLine($"Aにマッチ:{
|
27
|
+
Debug.WriteLine($"Aにマッチ:{matchA.Value}");
|
28
28
|
}
|
29
29
|
}
|
30
30
|
```
|