I want a way to only display a set number of characters from a string/text value.
I want it to work in a way that if my_string.length > 40 then only get first 40 characters from my_string?
|
|
|
simply sub-string your string:
|
|||
You can check description for slice! here |
|||||
|
|
If you are already using the activesupport gem (or if you don't mind adding it as a dependency), then you can also use String#truncate. If your string is longer than the set limit you will see "Your string..." |
|||
|
|
|
Ruby lets you slice a string:
As Andy H reminded me, this can be shorted to:
Here's an example:
|
|||||
|