0
0

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 1 year has passed since last update.

正規表現

Posted at

image.png
1:使われる正規表現の書き方
・全角ひらがなのみ
^[ぁ-んー]*$

・全角ひらがなのみ(半角・全角スペースも許容)
^[ぁ-んー\s ]*$

・全角カタカナのみ
^[ァ-ンヴー]*$

・全角カタカナのみ(半角・全角スペースも許容)
^[ァ-ンヴー\s ]*$

・8桁の半角英数のみ
^[a-zA-Z0-9]{8}$
※ {8} の数値を変更することで桁数を変更することができます。

・12桁の半角英数記号のみ
^[\x20-\x7F]{12}$
※ {12} の数値を変更することで桁数を変更することができます。

・日本語(漢字、ひらがな、全角カタカナ)
^[ぁ-んァ-ヶー\u30a0-\u30ff\u3040-\u309f\u3005-\u3006\u30e0-\u9fcf]*$

・日本語(漢字、ひらがな、全角カタカナ)と半角スペース、全角スペースのみ
^[ぁ-んァ-ヶー\u30a0-\u30ff\u3040-\u309f\u3005-\u3006\u30e0-\u9fcf\s ]*$

・半角英数字と半角ハイフン、半角スペースのみ
^[0-9a-zA-Z-\s]*$

・半角スペース、改行、タブ文字などの空白文字と全角スペースが含まれない文字列
[^\s| ]+

・IPアドレス(IPv4)形式
^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]).){3}(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])$

・URL形式
^http(s?)://[-a-zA-Z0-9+&@#/%?=~_|!:,.;]*$
※ テキストフィールドは、128byteのため、テキストエリアを選択してください。

・郵便番号形式(日本国内)半角数字ハイフンあり
^\d{3}-\d{4}$

・郵便番号形式(日本国内)半角数字ハイフンなし
^\d{7}$

・郵便番号形式(日本国内)全角数字ハイフンなし
^[0-9]{7}$

0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?