<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
</head>
<body text="#000000" bgcolor="#FFFFFF">
<div class="moz-cite-prefix">Hello,<br>
Le 10/09/2015 23:14, Samuel Enibe a écrit :<br>
</div>
<blockquote
cite="mid:CAJKcLoXLb2_iUbgeTCHLrq5U+AGqLC5ZoBfDMdMz_ZCOKshx9g@mail.gmail.com"
type="cite">
<pre wrap="">Thank you very much. The string was generated from Excel 2003 files.
Some cells contained blank spaces which when processed for use in a
LaTeX document or csv file, the blank lines cause errors and had to be
removed manually.
I tried using the expression
datax = strsubst(datax, "\n", " ");//replace EndOfLine with " " everywhere
to replace the EndOfLine characters with ordinary spaced but this did
not produce the desired results.
</pre>
</blockquote>
<font face="Arial">You may try</font><br>
<pre wrap="">datax = strsubst(datax, ascii(10), " ");
datax = strsubst(datax, ascii(13), " ");
</pre>
</body>
</html>