Jump to content

CSV to HTML translation: Difference between revisions

(Shared a Simple R implementation)
Line 4,504:
 
Using base R functions only, this is a very basic implementation and produces a simple HTML table
<lang Rrsplus>File <- "~/test.csv"
Opened <- readLines(con = File)
Size <- length(Opened)
Line 4,532:
<tr><td>Brians mother</td><td>I'm his mother; that's who!</td></tr>
<tr><td>The multitude</td><td>Behold his mother! Behold his mother!</td></tr></table></lang>
 
=={{header|Racket}}==
 
Cookies help us deliver our services. By using our services, you agree to our use of cookies.