Text to ASCII Code function
Function to convert plain text to ASCII code.
Rate Text to ASCII Code function
(2(2 Vote))
Function ASCIICode(str)
Dim strOut, i
strOut = ""
For i = 1 To Len(str)
strOut = strOut & "&#" & ASC(Mid(str, i, 1)) & ";"
Next
ASCIICode = strOut
End function
Text to ASCII Code function Comments
No comments yet — be the first to post one!
Post a Comment