Browse thread
[Caml-list] function
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | sebastien FURIC <sebastien.furic@t...> |
| Subject: | Re: [Caml-list] function |
"altavillasalvatore@libero.it" a écrit : > > Hi all, > I would want to know if a function exists that allows me to make this: > > ["123";"45";"678"] -> [1;2;3;4;5;6;7;8;]. > You could split the problem into several simple ones: - Given a strings, return the list of its characters: explode : string -> char list - Given a list of chars, return a list of ints using List.map: chars_to_ints : char list -> int list - And then, given a list of strings, apply a composition of the previous functions to it (and collect the results) using List.fold_right for instance... Regards, Sebastien. ------------------- To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/ Beginner's list: http://groups.yahoo.com/group/ocaml_beginners