Powered by AppSignal & Oban Pro
Would you like to see your link here? Contact us

Strings

reading/strings.livemd

Strings

Mix.install([
  {:jason, "~> 1.4"},
  {:kino, "~> 0.9", override: true},
  {:youtube, github: "brooklinjazz/youtube"},
  {:hidden_cell, github: "brooklinjazz/hidden_cell"}
])

Navigation

Home Report An Issue ArithmeticIO

Review Questions

Upon completing this lesson, a student should be able to answer the following questions.

  • What are strings, and what kind of information are they useful for storing?
  • How do we add two strings together using string concatenation?
  • How do we interpret Elixir code inside of a string using string interpolation?

Strings

A string is any sequence of characters contained within two double quotes "". A character is any single number, letter, or symbol.

"T" # letters
"t" # letters
"1" # numbers
"1.2" # numbers
"&" # symbols
"_" # symbols

You can visualize a string as characters joined together by strings. Strings can be a single character, no characters, or many characters!

flowchart LR
  S --- T --- R --- I --- N --- G

Strings can contain single quotes and other symbols such as !@#$%^&*()_+-=';: and more.

"!@#$%^&*()_+-=';:"

They are useful for representing all kinds of information as text.

Your Turn

In the Elixir cell below, create a string "Hello, world!". This is a rite of passage for every programmer.

Multiline Strings

Sometimes we want to represent a string with multiple lines. The newline \n character represents a new line in a string.

string = "line 1\nline 2\nline 3"

IO.puts(string)

To make defining multiline strings easier, Elixir allows us to use three quotes """ to define a multiline string.

string = """
line 1
line 1
line 1
"""

IO.puts(string)

String Operators

String operators allow us to manipulate strings.

The <> operator joins two strings together. Joining strings together is called string concatenation.

"hello, " <> "world."

Only strings can be concatenated together using the <> operator. You’ll notice concatenating 1 causes an error expected binary argument in <> operator but got 1 This error occurs because we’re asking the computer to concatenate a string with an integer.

"hello" <> 1

Your Turn

In the Elixir cell below, use string concatenation to join "Hi " and the name of one of your classmates.

So "Peter" would be come "Hi Peter.".

Replace nil with your answer.

Example solution

"Hi " <> "Peter."

String Interpolation

Using #{}, We can also interpolate values in strings. Essentially, this means we can evaluate code inside of a string. The code you want to interpolate inside of the string goes between the curly braces {}.

So we can evaluate 4 + 4, which equals 8 inside a string.

"I have #{4 + 4} apples."

String interpolation is often useful when your string has many computed values or tricky punctuation. Otherwise, it’s easy to make mistakes.

Notice that there’s a grammar mistake below that could easily be missed when using string concatenation.

"I have" <> "8" <> "apples"

Your Turn

In the Elixir cell below, use string interpolation to say I have #{X - 1} classmates.. Where X is the number of people in your cohort including yourself.

Example solution

"I have #{1 - 1} classmates."
answer = nil

Escaping Characters

Elixir allows you to use Escape Characters to represent special values in a string. We’ve already seen the \n escape character for a newline.

For example, we can use the \ symbol to escape special characters in a string. This is handy when you want to include characters that would have alternative meaning in the string. For example, if you wanted to include double quotes in a string, you can escape the double quote \".

string = "They said \"so this is how you include double quotes in a string!\""

IO.puts(string)

There are other special characters such as backslashes \, or interpolation syntax that you might want to escape.

string = "Use \#{} to interpolate a value in a string"

IO.puts(string)
string = "If you don't escape using backslash \\, then #{} doesn't appear"

IO.puts(string)

Further Reading

Consider the following resource(s) to deepend your understanding of the topic.

Commit Your Progress

DockYard Academy now recommends you use the latest Release rather than forking or cloning our repository.

Run git status to ensure there are no undesirable changes. Then run the following in your command line from the curriculum folder to commit your progress.

$ git add .
$ git commit -m "finish Strings reading"
$ git push

We’re proud to offer our open-source curriculum free of charge for anyone to learn from at their own pace.

We also offer a paid course where you can learn from an instructor alongside a cohort of your peers. We will accept applications for the June-August 2023 cohort soon.

Navigation

Home Report An Issue ArithmeticIO