Current section

Files

Jump to
petal_components lib petal_components helpers.ex
Raw

lib/petal_components/helpers.ex

defmodule PetalComponents.Helpers do
@doc """
Remove newlines and extra spaces from a string
"""
def convert_string_to_one_line(string) do
string
|> String.replace("\r", " ")
|> String.replace("\n", " ")
|> String.split()
|> Enum.join(" ")
end
end