데이터베이스에서 데이터를 찾을 때, 리턴/줄 바꾸기 방법이 있습니다
1598 단어 실시간 노트
Public Shared Function delEnterCharForPrint2(ByVal
strValue As String) As String
Dim strReturn As String = strValue
' ( , )
strReturn = strReturn.Replace(Chr(39).ToString, "'+ String.fromCharCode(39) +'")
'
strReturn = strReturn.Replace(Chr(10).ToString, "'+ String.fromCharCode(10) +'")
strReturn = strReturn.Replace(Chr(13).ToString, "'+ String.fromCharCode(13) +'")
strReturn = strReturn.Replace(Chr(92).ToString, "'+ String.fromCharCode(92) +'")
Return strReturn
End Function