回答編集履歴
1
説明追加
test
CHANGED
@@ -5,3 +5,9 @@
|
|
5
5
|
bool res = Regex.IsMatch("#azd@+", str);
|
6
6
|
|
7
7
|
```
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
[IsMatch(String, String)](https://docs.microsoft.com/ja-jp/dotnet/api/system.text.regularexpressions.regex.ismatch#System_Text_RegularExpressions_Regex_IsMatch_System_String_System_String_)
|
12
|
+
|
13
|
+
正規表現と一致する箇所が見つかった場合に`true`が返るので、`^`と`$`をつけて先頭から末尾まで、`+`をつけて複数文字にマッチさせないと意図通りになっていません。
|