C# 正規表現
作成日時:2019/07/15
更新日時:2019/07/15
スポンサーリンク
エスケープ文字一覧
https://docs.microsoft.com/ja-jp/dotnet/standard/base-types/character-escapes-in-regular-expressions
指定条件にマッチするか
スラッシュ2つによるコメント行か
string str = " // コメント"; bool isComment = Regex.IsMatch(str, @"\A\s*//");
空白のみで構成される行か
string str = " "; bool isBlank = Regex.IsMatch(str, @"\A\s*\Z");