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 3 years have passed since last update.

バッククオートをgsubで置換するときの注意

Posted at

TeamsにAPIで投稿するときに文字列内のバッククオート('`')がMarkdownで処理され見た目がおかしくなったため、バックスラッシュ('')を前に置いてエスケープしようとしたらうまくいかなかった。

example.rb
s = 'abc`123`xyz'  # 'abc\`123\`xyz' にしたいのに
puts s.gsub(/`/, '\`') # => abcabc123abc`123xyz

なぜこんなことに・・・、と思ったら'\`'は置換文字列内でマッチした部分文字列として使われるらしい。

instance method String#gsub

バックスラッシュを増やしたらうまくいった

example.rb
s = 'abc`123`xyz'
puts s.gsub(/`/, '\\\`') # => abc\`123\`xyz

それにしても、Markdown無効で投稿できる機能が欲しい。。。

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?