반응형
* VBNET Encoding Class 를 이용한 유니코드(한글) 문자열 존재 여부 예제...
- 사용한 컨트롤 : Button 1개, TextBox 1개, Label 1개
전체 소스 코드
Form1.vb
Public Class Form1
Private Sub button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button1.Click
If textBox1.Text = "" Then
Return
End If
Dim iAscii As Integer = System.Text.Encoding.ASCII.GetByteCount(textBox1.Text)
Dim iUnicode As Integer = System.Text.Encoding.UTF8.GetByteCount(textBox1.Text)
'같지 않으면...
If iAscii <> iUnicode Then
label1.Text = "Unicode 가 존재 합니다."
Else
label1.Text = "Unicode 가 존재 하지 않습니다."
End If
End Sub
End Class
*예제 결과
https://kdsoft-zeros.tistory.com/198
반응형
'VB.NET Programming' 카테고리의 다른 글
[VBNET] Regex 를 이용한 간단한 이메일 주소 체크 (0) | 2020.05.06 |
---|---|
[VBNET] String To 이진수, 이진수 To String 으로 변환 (0) | 2020.05.01 |
[VBNET] [API] Form - Animate (0) | 2020.04.24 |
[VBNET] PC 사용 시간 얻어 오기 (PC Use Time) (0) | 2020.04.23 |
[VBNET] [API] mciSendString - WAV 파일 재생 (0) | 2020.04.21 |