While developing a log module using a gen_event, I needed to escape simple quotes.
Sometime thoses quotes were already escaped...
I've found this regexp to handle gracefully the case:
re:replace( Bin, "(?<!\\\\)'", "\\\\'", [ global ] ).
re:replace( Bin, "(?<!\\\\)'", "\\\\'", [ global ] ).
get_salt( <<"Salted__", Salt:8/binary, Rest/binary>> ) -> {Salt, Rest}.