0
VBA
に、ユニコードを含むテキストをHTMLエンティティに変換するにはどうすればよいですか?ユニコードのテキストをHTMLエンティティに変換する
例: Test chars: èéâ
はTest chars: èéâ
VBA
に、ユニコードを含むテキストをHTMLエンティティに変換するにはどうすればよいですか?ユニコードのテキストをHTMLエンティティに変換する
例: Test chars: èéâ
はTest chars: èéâ
Function Unicode2Html(strText As String) As String
Dim i As Integer
Dim strOut As String
Dim char As String
Dim intCharCode As Integer
For i = 1 To Len(strText)
char = Mid(strText, i, 1)
intCharCode = AscW(char)
If intCharCode > 127 Then
strOut = strOut & "&#" & intCharCode & ";"
Else
strOut = strOut & char
End If
Next
Unicode2Html = strOut
End Function