4
3

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.

半角スペースだけの文字列に合致する正規表現

Posted at
// 1.空白文字のみの入力(全角スペースは許容する)
// 文字列の先頭から末尾まで半角スペースを1回以上繰り返す(=半角スペースだけで構成された文字列)
hankaku = /^\s+?$/

// 訳
^  : 文字列の先頭
\s : 空白文字半角スペースタブ改行文字改ページ
+? : 1回以上指定した文字上記では\sを繰り返す
$  : 文字列の末尾

// 2.半角スペースのみの入力
// 文字コードがUTF-8の場合、1.では全角スペースも合致してしまうので直接半角スペースを入力する
hankaku_UTF8 = /^ +?$/

4
3
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
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?