1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

半角数字の正規表現

Last updated at Posted at 2020-12-07

#半角数字のまとめ
半角数字
/\A[0-9]+\z/

###日付
半角数字(ハイフン・小数点)
/\A\d{4}-\d{2}-\d{2}\z/

###時間
24時間表記
/\A([01][0-9]|2[0-3]):[0-5][0-9]\z/


#####参考にしたサイト
https://teratail.com/questions/145336
https://teratail.com/questions/61764

1
2
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?