回答編集履歴
1
ソース修正
test
CHANGED
@@ -71,3 +71,27 @@
|
|
71
71
|
}
|
72
72
|
|
73
73
|
```
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
ほんで、上のコードの `check(string text)` を詰めて書くと、こないな感じ
|
78
|
+
|
79
|
+
```C#
|
80
|
+
|
81
|
+
private static string check(string text) {
|
82
|
+
|
83
|
+
return (
|
84
|
+
|
85
|
+
text.Length >= 5 &&
|
86
|
+
|
87
|
+
Regex.IsMatch(text, "[a-zA-Z]") &&
|
88
|
+
|
89
|
+
Regex.IsMatch(text, "[0-9]") &&
|
90
|
+
|
91
|
+
!Regex.IsMatch(text, "(.)\1{2,}") ? "success" : "fail");
|
92
|
+
|
93
|
+
}
|
94
|
+
|
95
|
+
```
|
96
|
+
|
97
|
+
➡ [ここにも上げといたで。](https://replit.com/@suwmn50799/357814Si-Wei-toiebaSi-Wei-Cong-rubinoZhi-Lun)
|