theoks
How to escape a single backslash in Elixir when encoding to JSON?
I have this body for a request, which in Elixir is represented like this:
body = %{
password: "my\Password"
}
I use Poison.encode! to convert it to JSON and what it is being sent is this:
%HTTPoison.Request{
body: "{\"sftp_password\":"\myPassword\"}
}
If I try and escape it with a double backslash:
body = %{
password: "my\\Password"
}
this is what is being encoded and sent in the request:
%HTTPoison.Request{
body: "{\"sftp_password\":"\my\\\\Password\"}
}
I also tried to convert the string to a charlist and it just encodes the code points, not the actual characters.
Is there any way to encode just one backslash, or to put it more generally: how do I pass string literals when encoding with Poison or in Elixir in general?If your question is related to Phoenix or Nerves, please post it in the Phoenix or Nerves Questions / Help section. Thanks!
Most Liked
benwilson512
You don’t actually have one backslash in the original string. See:
iex(9)> body = %{password: "my\Password"}
%{password: "myPassword"}
Notice how the output is just "myPassword". The backslash is gone there, it doesn’t have anything to do with Poison’s JSON encoding. \ is itself the escape character in a string. If you want one in there literally, you need to escape it:
iex(1)> IO.puts("my\Password")
myPassword
:ok
iex(2)> IO.puts("my\\Password")
my\Password
:ok
Notably, if you’re reading in external text that has a slash, this will not be lost:
iex(3)> string = IO.gets("Password: ")
Password: my\Password
"my\\Password\n"
iex(4)> IO.puts string
my\Password
fuelen
It is correctly encoded with double backslash and only one backslash is sent in request.
Multiple backslashes are used because both Elixir and JSON use them for escaping special characters.
This is just visual representation in terminal.
iex(1)> body = %{password: "my\\Password"}
%{password: "my\\Password"}
iex(2)> Poison.encode!(body)
"{\"password\":\"my\\\\Password\"}"
iex(3)> Poison.encode!(body) |> IO.puts
{"password":"my\\Password"}
:ok
Last result is a JSON that will be sent to the server.
LostKobrakai
body = %{password: ~S(my\Password)} and you don’t need to escape the backslash. Sigils can be wrapped by many different characters so unless you use all of them you should find one, which isn’t problematic: Syntax reference — Elixir v1.20.2
Popular in Questions
Other popular topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #supervisor
- #advent-of-code
- #elixirconf-us
- #distillery
- #processes
- #forms
- #api
- #metaprogramming
- #security
- #performance








