From: "Török Edwin" <edwintorok@gmail.com>
To: caml-list@yquem.inria.fr
Subject: Re: [Caml-list] Escaped string in sexplib
Date: Tue, 08 Jun 2010 22:42:52 +0300 [thread overview]
Message-ID: <4C0E9D3C.3070104@gmail.com> (raw)
In-Reply-To: <4C0E9177.4080802@inescporto.pt>
On 06/08/2010 09:52 PM, Hugo Ferreira wrote:
> Hello,
>
> Markus Mottl wrote:
>> On Tue, Jun 8, 2010 at 11:44, Hugo Ferreira <hmf@inescporto.pt> wrote:
>>> I am trying to us the Sexplib library to process data.
>>> However I am having some trouble with strings.
>>> Specifically I need to save and restore strings to a file
>>> so that the escaping done during saving is "undone"
>>> when data is read back in.
>>>
>>> How can I do this? Appreciate any pointers.
>>
>> The I/O and parsing routines in the S-expression library should take
>> care of escaped strings just fine.
>
> My apologies but I did not explain myself correctly. The problem here is
> that I am trying to automate the conversion to string of the data
> structure read from the s-expressions. I have the following:
>
> let string_of_experiment_data data =
> let data = sexp_of_experiment_data data in
> Sexplib.Sexp.to_string_hum data
>
> The problem here is that the "to_string_hum" escapes certain characters,
> but I need to have the strings "not escaped". So my question is: is
> their any way I can tell sexplib to output a string but not escape
> it? Otherwise I will have to hand encode this stuff 8-(
>
>> Btw., the escaping conventions are
>> absolutely identical to the ones used by OCaml.
>>
>
> I am aware of this as it is indicated in your documentation and
> the ocaml tutorial site. I also searched for a means to "unescape"
> the result from "to_string_hum", which would also work. However
> I cannot find a String.unescape. This issue has already been pointed
> out. A possible solution would be to use the old.
>
> Token.eval_string
>
> and I cannot seem to use the equivalent of the new camlp4. The
> equivalent:
>
> open Camlp4.PreCast
> open Syntax
> let eval_string s = Camlp4.Struct.Token.Eval.string ~strict:() s
>
> does not compile (Error: Unbound module Camlp4.PreCast).
It compiles for me if I add -I +camlp4:
ocamlc -I +camlp4 -c x.ml
or:
ocamlfind ocamlc -package camlp4.lib -c x.ml
It also links if you add -linkpkg.
Best regards,
--Edwin
next prev parent reply other threads:[~2010-06-08 19:42 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-06-08 15:44 Hugo Ferreira
2010-06-08 16:23 ` [Caml-list] " Paolo Donadeo
2010-06-08 19:10 ` Hugo Ferreira
2010-06-08 16:52 ` Markus Mottl
2010-06-08 18:52 ` Hugo Ferreira
2010-06-08 19:30 ` Hugo Ferreira
2010-06-09 7:39 ` Paolo Donadeo
2010-06-09 8:02 ` Hugo Ferreira
2010-06-08 19:36 ` Markus Mottl
2010-06-08 19:40 ` Hugo Ferreira
2010-06-08 19:42 ` Török Edwin [this message]
2010-06-09 6:40 ` Hugo Ferreira
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4C0E9D3C.3070104@gmail.com \
--to=edwintorok@gmail.com \
--cc=caml-list@yquem.inria.fr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox