idi527

idi527

How I would create a multiline string without a trailing line break with Elixir?

I’ve been re-reading swift book again and noticed that multiline strings there don’t have a trailing line break, unlike in elixir

iex(2)> """
...(2)> asdf
...(2)> """
"asdf\n"

I wonder how I would create a multiline string without a trailing line break with elixir.

In swift I can add a line break by adding a newline

let lineBreaks = """
 
This string starts with a line break.
It also ends with a line break.
 
"""

which is the same as

line_breaks = """

This string starts with a line break.
It also ends with a line break.
"""

in elixir.

I feel like swift’s way is a bit more consistent and gives freedom to chose how to end the string.

Is there a reason for elixir’s multiline string to be different? I see only one advantage to this approach:

ab = """
a
b
"""

c = """
c
"""

ab <> c == """
a
b
c
"""

In swift it would be

"""
a
bc
"""

but can be fixed by adding a new line at the end of ab.

Most Liked

benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe
iex(7)> """
...(7)> foo\
...(7)> """
"foo"
18
Post #4
thbar

thbar

In case someone stumbles on this thread: the “\” at the end to avoid newline still appears to work with recent versions of Elixir.

iex(1)> """
...(1)> foo\
...(1)> """
"foo"
iex(2)> """
...(2)> foo
...(2)> """
"foo\n"
NobbZ

NobbZ

"""
Foo"""

# or even

"""Foo"""

I prefer the elixir behaviour over the swift one, as elixir complies with POSIX that text files should always end in a newline.

OvermindDL1

OvermindDL1

Uh, if Elixir worked that way I’d be fine with it, but it doesn’t, and based on the way Elixir’s does work I’d prefer Swift’s way as well:

╰─➤  iex
Erlang/OTP 20 [erts-9.2] [source] [64-bit] [smp:6:6] [ds:6:6:10] [async-threads:10] [hipe] [kernel-poll:false]

Interactive Elixir (1.6.1) - press Ctrl+C to exit (type h() ENTER for help)
iex(1)> """
...(1)> Foo"""
** (SyntaxError) iex:2: invalid location for heredoc terminator, please escape token or move it to its own line: """

iex(1)> """Foo"""
** (SyntaxError) iex:1: heredoc start must be followed by a new line after """

the heck forum syntax coloring borked ^.^;

NobbZ

NobbZ

Hmmm? Did they remove this syntax? I think I used it in some old code… Perhaps I’m misremembering things though…

Where Next?

Popular in Questions Top

JDanielMartinez
Hi! May someone helps me, please! I have two apps into an umbrella project: the first one is Database, which manages queries, and the se...
New
Brian
What is the proper way to load a module from a file in to IEX? In the python world, doing something like this pretty standard: from ....
New
bsollish-terakeet
Credo is smart enough to check for (something like) this: assert length(the_list) == 0 with this response: Checking if an enum is empt...
New
JorisKok
I have a server on AWS, and was running a load test using artillery. When looking at the Phoenix dashboard I see the Ports going to 100% ...
New
quazar
How to set Jason to encode all fields in ecto schema, I don’t care about security and implementing only is taking long list of attributes...
New
polypush135
As many of you may have realized by now (sorry for all the posts here) I’ve been working on a db problem where I’m trying to aggregate a ...
New
ovidiubadita
Hey all, I discovered Elixir and I love it. I always wanted to learn a functional programming and I intended to go for Haskell, but afte...
New
WestKeys
Currently suffering from paralysis by [HTTP client] analysis. This is rather unusual in Elixirland as there tends to be consensus on the ...
New
belgoros
I’m not a pro in using Regex and can’t figure out why the following behaviour happens, especially if we take into account the difference ...
New
vrod
I am using the Starship cross-shell prompt – it seems pretty nice, but I get some errors: [WARN] - (starship::utils): Executing command ...
New

Other popular topics Top

sorentwo
Hello! tl;dr Announcing Oban, an Ecto based job processing library with a focus on reliability and historical observability. After spen...
977 41022 311
New
dotdotdotPaul
Okay, I'm having a heck of a time trying to figure out how to best handle the validation of belongs_to associations in Ecto. I'm sure I'...
New
vonH
In asking this question I am more interested about the expressiveness of the language itself and less concerned about the availability of...
New
William
I would like to know that is there any online source for learning Phoenix Framework for building E-Commerce Store? Any advantage on build...
New
malloryerik
Hi, this is for people who, like me, have had some friction using .html.heex templates in VSCode. The solution seems to be, in a hyphena...
New
script
If I have a string “1000 cfu/ml” . I want to remove the characters and / and space . So the string is like this "1000" What is the ...
New
mgjohns61585
Could someone help me? I'm making my first elixir program, number guessing game. I can't figure out how to convert the user's guess from ...
New
chensan
I have a User schema with a :from_id field set to type :string: defmodule TweetBot.Repo.Migrations.CreateUsers do use Ecto.Migration ...
New
stefanluptak
Hello everybody, usually, I use a 29" ultra-wide monitor for VSCode which can easily accomodate explorer (files panel) + file with code ...
New
skosch
To my knowledge, put_in, Map.update etc. all have the one limitation of not automatically creating intermediate keys when needed (for exa...
New

We're in Beta

About us Mission Statement