Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,28 @@
|
|||
Public Sub CSV_TO_HTML()
|
||||
input_ = "Character,Speech\n" & _
|
||||
"The multitude,The messiah! Show us the messiah!\n" & _
|
||||
"Brians mother,<angry>Now you listen here! He's not the messiah; " & _
|
||||
"he's a very naughty boy! Now go away!</angry>\n" & _
|
||||
"The multitude,Who are you?\n" & _
|
||||
"Brians mother,I'm his mother; that's who!\n" & _
|
||||
"The multitude,Behold his mother! Behold his mother!"
|
||||
|
||||
Debug.Print "<table>" & vbCrLf & "<tr><td>"
|
||||
For i = 1 To Len(input_)
|
||||
Select Case Mid(input_, i, 1)
|
||||
Case "\"
|
||||
If Mid(input_, i + 1, 1) = "n" Then
|
||||
Debug.Print "</td></tr>" & vbCrLf & "<tr><td>";
|
||||
i = i + 1
|
||||
Else
|
||||
Debug.Print Mid(input_, i, 1);
|
||||
End If
|
||||
Case ",": Debug.Print "</td><td>";
|
||||
Case "<": Debug.Print "<";
|
||||
Case ">": Debug.Print ">";
|
||||
Case "&": Debug.Print "&";
|
||||
Case Else: Debug.Print Mid(input_, i, 1);
|
||||
End Select
|
||||
Next i
|
||||
Debug.Print "</td></tr>" & vbCrLf & "</table>"
|
||||
End Sub
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
<table>
|
||||
<tr><td>
|
||||
Character</td><td>Speech</td></tr>
|
||||
<tr><td>The multitude</td><td>The messiah! Show us the messiah!</td></tr>
|
||||
<tr><td>Brians mother</td><td><angry>Now you listen here! He's not the messiah; he's a very naughty boy! Now go away!</angry></td></tr>
|
||||
<tr><td>The multitude</td><td>Who are you?</td></tr>
|
||||
<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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue