search for: temporaryli

Displaying 2 results from an estimated 2 matches for "temporaryli".

2006 Jul 31
0
parsing a file
Hi eveyone, If I want to parse a string file when the user uploads afile, how can I extract only those strings that i want, assuming that i already have the ruby script? should I save the file temporaryly and parse it and then export desired data or is there another way of parsing a file directly into the database? thanks -- Posted via http://www.ruby-forum.com/.
2005 Aug 15
4
Re-sort list of vectors
Hi. Can anyone suggest a simple way to re-sort in R a list of vectors of the following form? input $"1" a b c 1 2 3 $"2" a b c 4 5 6 Output should be something like: "a" "1" 1 "2" 4 "b" "1" 2 "2" 5 "c" "1" 3 "2" 6 I've been futzing with mapply(), outer(), split(), rbind()