<p dir="ltr">Regexp substitution?  :-)<br>
(That's the simple path, anyway.)</p>
<div class="gmail_quote">Den 07/02/2014 19.33 skrev "Brandon Clark" <<a href="mailto:a.brandon.clark@gmail.com">a.brandon.clark@gmail.com</a>>:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div dir="ltr">I have 2 production systems, one Erlang and one not, both maintaining copies of a large, deeply-nested Erlang data structure.  I need to set up a monitoring script to confirm that both systems are holding identical copies of the data structure.<div>

<br></div><div>The non-Erlang system is holding an ASCII rendering of the data structure.  Computing an MD5 sum of this string is easy.  If I can get the Erlang system to convert its data structure to a string, I can have it compute an MD5 sum as well and the monitoring is simply a matter of comparing hashes.</div>

<div><br></div><div>I'm stuck on the process of converting the Erlang term to a string.</div><div><br></div><div><font face="courier new, monospace">Str = io_lib:format("~p", [Data])</font></div><div><font face="courier new, monospace"><br>

</font></div><div><font face="arial, helvetica, sans-serif">gives me what I want, except that it includes newlines and indentation that I can't expect the non-Erlang system to have.</font></div><div><font face="arial, helvetica, sans-serif"><br>

</font></div><div><font face="courier new, monospace">Str = io_lib:format("~w", [Data])</font></div><div><font face="arial, helvetica, sans-serif"><br></font></div><div><font face="arial, helvetica, sans-serif">eliminates the newlines and indentation but renders the textual components of Data as lists of integers, guaranteeing the result won't match the non-Erlang system.</font></div>

<div><br></div><div>So the question is, how do I get a "~p"-style rendering of an arbitrarily-large Erlang term <i>without</i> newlines and indentation?</div><div><br></div><div>Thank you!</div><div><br></div><div>

~Brandon Clark</div><div><br></div></div>
<br>_______________________________________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://erlang.org/mailman/listinfo/erlang-questions</a><br>
<br></blockquote></div>