Hi all, I came across from laravel <https://laravel.com> framework, where there are a lot of useful functions, I miss those functions in Elixir, One of the functions is called limit <https://laravel.com/docs/9.x/helpers#method-str-limit> function, I would like to have that in elixir. ``` iex> String.limit("elixir", 3) "eli..."
iex> String.limit("elixir", 7) "elixir" iex> String.limit("elixir", 3, "***") "eli***" ``` This function would be really helpful with longer string, we can limit long string with some trailing string like (...). What do you think? If yes what should be the name you suggest? Thanks, Hassan -- You received this message because you are subscribed to the Google Groups "elixir-lang-core" group. To unsubscribe from this group and stop receiving emails from it, send an email to elixir-lang-core+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/elixir-lang-core/18e9e2a8-5d89-471c-9e9a-6406fba03936n%40googlegroups.com.