0
0

More than 3 years have passed since last update.

Rails 長い文字列を省略する方法

Posted at

文字数が多くなると
当然横に大きく膨れてきます。
そこで制御するメソッドを書き記しておきます。

truncateとは

文字数を切り捨て表示する

参考資料

app/viwes/hoge/index.html.erb
<%= "1234567890".truncate(5) %>
表示
12345...

truncateを使用することで文字数が制御できます!

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