I want to replace/censor the characters of a username in elixir. So in the end, it should looks like in the bidders list in ebay:
in elixir there is the String replace function, but i am a newbe at regex and i dont know what elixir-regex supports. so how can i achieve this?
iex> String.replace("username1234", someregex, "***")
"u***4"