Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
スラッシュまたは数字を除くすべての文字を空の文字列に置き換える正規表現を探しています。
数字以外のすべてを削除する次のものがあります。
Regex.Replace(time, "[^0-9]", "");
Regex.Replace(time, "[^0-9/]", "");
これはうまくいくはずです。
試す
Regex.Replace(time, "[^0-9|/]", "");
[^0-9/]右のパターンのように見えます。
[^0-9/]
Debuggex でライブ編集