반응형
private string GetUnicodeValue(string stringUnicode)
{
Regex regex = new Regex(@"\\[uU]([0-9A-F]{4})", RegexOptions.IgnoreCase);
return regex.Replace(stringUnicode, match => ((char)int.Parse(match.Groups[1].Value, NumberStyles.HexNumber)).ToString());
}
'Programing > C# ' 카테고리의 다른 글
Make Short Path(긴 파일명 짧게 줄이는 방법), 파일이름 길이 줄이기 (0) | 2012.12.18 |
---|---|
Reflection 리플렉션 사용하기 (0) | 2012.12.12 |
c# 코드 관리자 권한으로 실행 (0) | 2012.11.06 |
네트워크 드라이브 목록 가져오기 (0) | 2012.09.24 |
LineStyleComboBox(라인 스타일적용한 콤보박스) (0) | 2012.06.26 |