20
17

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.

Ruby – 半角スペースも全角スペースも一緒に削除する例

Last updated at Posted at 2018-11-29

#code

gsub(/[[:space:]]/, '')

#pry

[2] pry(main)> ' ←半角 ←全角'.gsub(/[[:space:]]/, '')
=> "←半角←全角"

#ref

  • [\p{Z}\t\r\n\v\f] と同義っぽい
  • \s では全角スペースが削除されなかった

Regexp Tutorial - Character Classes or Character Sets

image.png

#env

  • ruby 2.4.2p198 (2017-09-14 revision 59899) [x86_64-darwin16]

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

Twitter

20
17
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
20
17

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?