Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to replace characters in string Erlang?

Tags:

regex

erlang

I have this piece of code that gets sessionid, make it a string, and then create a set with key as e.g. {{1401,873063,143916},<0.16443.0>} in redis. I'm trying replace { characters in this session with letter "a".

OldSessionID= io_lib:format("~p",[OldSession#session.sid]),
StringForOldSessionID = lists:flatten(OldSessionID),
ejabberd_redis:cmd([["SADD", StringForSessionID, StringForUserInfo]]);

I've tried this:

re:replace(N,"{","a",[global,{return,list}]).

Is this a good way of doing this? I read that regexp in Erlang is not a advised way of doing things.

like image 914
max Avatar asked Dec 14 '22 22:12

max


2 Answers

Your solution works, and if you are comfortable with it, you should keep it.

On my side I prefer list comprehension : [case X of ${ -> $a; _ -> X end || X <- StringForOldSessionID ]. (just because I don't have to check the function documentation :o)

like image 93
Pascal Avatar answered Dec 21 '22 01:12

Pascal


re:replace(N,"{","a",[global,{return,list}]).

Is this a good way of doing this? I read that regexp in Erlang is not a advised way of doing things.

According to official documentation:

2.5 Myth: Strings are slow

Actually, string handling could be slow if done improperly. In Erlang, you'll have to think a little more about how the strings are used and choose an appropriate representation and use the re module instead of the obsolete regexp module if you are going to use regular expressions.

So, either you use re for strings, or:

leave { behind(using pattern matching) if, say, N is {{1401,873063,143916},<0.16443.0>}, then

{{A,B,C},Pid} = N

And then format A,B,C,Pid into string.

like image 25
Oleksandr Khryplyvenko Avatar answered Dec 21 '22 03:12

Oleksandr Khryplyvenko