braindeaf

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

Showing Posts 1 to 8

jazzyer

jazzyer

I’m not sure I fully understand what you want to do, but this example might give you a sense:

def replace_characters(string) do
    to_replace = ["&", "<", ">", "/", "'"]

    String.replace(string, to_replace, fn
      "&" -> "H"
      "<" -> "E"
      ">" -> "L"
      "/" -> "L"
      "'" -> "O"
    end)
  end
iex::1> Module.replace_characters("fdsfd &<>/' dsfds")                              
"fdsfd HELLO dsfds"

Anonimous function is arity 1, that’s why it complains.

braindeaf

braindeaf OP

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

braindeaf OP

OK, looks like I got it. I needed Regex.replace rather than String.replace

  def standardize_code(body) do
    Regex.replace(~r/<source>(.*?)<\/source>/s, body, fn _, code  ->
      case Phoenix.HTML.html_escape(code) do
        {:safe, html} ->
          "<code><pre>#{html}</pre></code>"
        _ ->
          "NOT ITS NOT SAFE"
      end
    end)
  end
TheMaikXX

TheMaikXX

Hello, just a note. The function Phoenix.HTML.html_escape does 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

LostKobrakai

There is the function raw/1, but that also just wraps data into a {:safe, …} tuple. There’s no :raw tagged tuple support afaik.

al2o3cr

al2o3cr

String.replace with a Regex uses Regex.replace under the hood, but the declaration of String.replace specifically 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.replace directly should do what you want.

braindeaf

braindeaf OP

Thank you all :slight_smile: Regex.replace was the thing thing,

Aetherus

Aetherus

A silly question that bugs me a lot. Why does Regex.replace take a (... -> String.t) as the third argument instead of a ([String.t] -> String.t)?

And, when I run this piece of code

Regex.replace(~r/\b\w+\b/, "hello, world", fn [capture] ->
  String.reverse(capture)
end)

it gives me an error

** (FunctionClauseError) no function clause matching in :erl_eval."-inside-an-interpreted-fun-"/1    
    
    The following arguments were given to :erl_eval."-inside-an-interpreted-fun-"/1:
    
        # 1
        "hello"

So what is a interpreted function?

— All posts loaded —

Where Next? Top

Trending in Questions Top

katta
I having some trouble figuring out if I have set myself too strict of standards for my production server. Currently I can handle 75% of r...
New
nseaSeb
Hello, I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
kpanic
Hi everyone, I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding. I sta...
New
velrest
So my question is quite simple and i have found no conclusive answer on forum, google or AI. Should we use :erlang.float for Integer to ...
New
asweet-confluent
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
apz
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New

Other Trending Topics Top

GenericJam
Edit: 2026 May 15 - This post is archived. Mob is alive!! Main docs: mob v0.7.11 — Documentation A bit of explanation for the slightly c...
New
JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
New
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews