|
|
|
Click here to copy the following block |
Function StringToCode(ByVal Source As String) As String
Dim Index As Integer Dim result As New Text.StringBuilder() Dim openQuotes As Boolean Dim trailingAmpersand As Boolean
If Source Is Nothing OrElse Source.Length = 0 Then Return """""" End If
For Index = 0 To Source.Length - 1 Dim ch As Char = Source.Chars(Index)
If Not Char.IsControl(ch) Then If openQuotes = False Then result.Append("""") openQuotes = True End If result.Append(ch) If ch = """" Then result.Append(ch) trailingAmpersand = False Else
If openQuotes Then result.Append(""" & ") openQuotes = False End If
Select Case Asc(ch) Case 0 result.Append("ControlChars.NullChar & ") Case 13 result.Append("ControlChars.Cr & ") Case 10 result.Append("ControlChars.Lf & ") Case 9 result.Append("ControlChars.Tab & ") Case Else result.Append("Chr(") result.Append(Asc(ch).ToString) result.Append(") & ") End Select trailingAmpersand = True End If Next
If openQuotes Then result.Append("""") ElseIf trailingAmpersand Then result.Remove(result.Length - 3, 3) End If
Return result.ToString.Replace("ControlChars.Cr & ControlChars.Lf", _ "ControlChars.CrLf")
End Function |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
 |

|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|