braindeaf
I wonder if I can ask a newbie question, maybe..I’m trying to replace
<source>SOMETHING</source>
with
<code><pre>SOMETHING</pre></code>
So I can replace the entire match
iex(14)> String.replace("<source>(aaaM)</source>", ~r/<source>(.*)<\/source>/, fn match-> "<code><pre>#{match}</pre></code>" end)
**"<code><pre><source>(aaaM)</source></pre></code>"**
But I need access to the first matched element, so (aaaM). Partly because I also want to HTML Escape it as well. Ok, I need to use the match in anonymous function…but..sadly.
iex(15)> String.replace("<source>(aaaM)</source>", ~r/<source>(.*)<\/source>/, fn match, code-> "<code><pre>#{match}</pre></code>" end)
warning: variable "code" is unused (if the variable is not meant to be used, prefix it with an underscore)
iex:15
** (FunctionClauseError) no function clause matching in String.replace/4
The following arguments were given to String.replace/4:
# 1
"<source>(aaaM)</source>"
# 2
~r/<source>(.*)<\/source>/
# 3
#Function<43.65746770/2 in :erl_eval.expr/5>
# 4
[]
Attempted function clauses (showing 1 out of 1):
def replace(subject, pattern, replacement, options) when is_binary(subject) and is_binary(replacement) or is_function(replacement, 1) and is_list(options)
(elixir 1.13.1) lib/string.ex:1477: String.replace/4
I’m not sure I follow, I’m now supplying 4 arguments. Even if I parenthesises the multiple arguments for the anonymous function. Anyone point out where I am being a dummy?
Many thanks
RobL
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
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
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 8- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
jazzyer
I’m not sure I fully understand what you want to do, but this example might give you a sense:
Anonimous function is arity 1, that’s why it complains.
braindeaf
OK, that makes sense if the arity is 1. Is there no way to get access to the multiple matched elements in the regex if you use an anonymous function? I would like to HTML Escape the contents of the <source> tag
braindeaf
OK, looks like I got it. I needed Regex.replace rather than String.replace
TheMaikXX
Hello, just a note. The function
Phoenix.HTML.html_escapedoes always return{:safe, content}according to the spec. Because if it finds code, that needs to be escaped, it escapes it.. That tuple is for phoenix rendering where you put this tuple into template, informing it that the given content is already escaped.There is also
{:raw, content}that tells phoenix that you insist on putting the content into final result as-is.LostKobrakai
There is the function
raw/1, but that also just wraps data into a{:safe, …}tuple. There’s no:rawtagged tuple support afaik.al2o3cr
String.replacewith aRegexusesRegex.replaceunder the hood, but the declaration ofString.replacespecifically narrows the allowed type of the function. Looks like it’s been that way since the feature was added:https://github.com/elixir-lang/elixir/pull/9073
Using
Regex.replacedirectly should do what you want.braindeaf
Thank you all
Regex.replace was the thing thing,
Aetherus
A silly question that bugs me a lot. Why does
Regex.replacetake a(... -> String.t)as the third argument instead of a([String.t] -> String.t)?And, when I run this piece of code
it gives me an error
So what is a interpreted function?