Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
(연관된 글이 1개 있습니다.)

C# - 숫자형 타입의 bit(2진) 문자열, 16진수 문자열 구하는 방법

다음과 같은 글이 있군요.

[C#/COMMON] 이진 문자열 구하기
; https://icodebroker.tistory.com/6278

[C#/COMMON] 16진수 문자열 구하기
; https://icodebroker.tistory.com/6280

같은 코드를 다르게 만들어보는 것도 좋겠지요. ^^ 우선, 16진수 문자열 구하는 것은 단순하게 ToString("x")과 같이 "x" 옵션을 주는 걸로 가능합니다.

int sourceValue1 = 100;
Console.WriteLine("0x" + sourceValue1.ToString("x")); // 0x64

C# 6.0의 문자열 내삽(string interpolation)인 경우에는 다음과 같은 형식으로 더욱 간단하게 해결할 수 있습니다.

Console.WriteLine($"0x{sourceValue1:x}");

그다음, 비트 표현의 문자열로 구하는 것도 Convert.ToString 메서드를 이용하면 매우 쉽게 구할 수 있습니다.

int sourceValue1 = 100;
Console.WriteLine(Convert.ToString(sourceValue1, 2).ToString());

단지, float이나 double인 경우 IEEE 표준에 의한 인코딩이 되어 있으므로,

C#, C++ - double의 Infinity, NaN 표현 방식
; https://www.sysnet.pe.kr/2/0/11896

다음과 같이 unsafe의 힘을 빌리거나,

float sourceValue2 = 100f;
double sourceValue3 = 100d;

int intValue = *(int*)&sourceValue2;
Console.WriteLine(Convert.ToString(intValue, 2).ToString()); // 출력 결과: 1000010110010000000000000000000

long longValue = *(long*)&sourceValue3;
Console.WriteLine(Convert.ToString(longValue, 2).ToString()); // 출력 결과: 100000001011001000000000000000000000000000000000000000000000000

BitConverter를 사용하면 됩니다.

Console.WriteLine(Convert.ToString(BitConverter.SingleToInt32Bits(sourceValue2), 2).ToString());
Console.WriteLine(Convert.ToString(BitConverter.DoubleToInt64Bits(sourceValue3), 2).ToString());

(첨부 파일은 이 글의 예제 코드를 포함합니다.)




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]

[연관 글]






[최초 등록일: ]
[최종 수정일: 5/24/2019]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... 61  62  63  64  65  66  67  [68]  69  70  71  72  73  74  75  ...
NoWriterDateCnt.TitleFile(s)
11927정성태6/5/201911554스크립트: 15. PowerShell ISE의 스크립트를 복사 후 PPT/Word에 붙여 넣으면 한글이 깨지는 문제 [1]
11926정성태6/4/201913043오류 유형: 542. Visual Studio - pointer to incomplete class type is not allowed
11925정성태6/4/201911805VC++: 131. Visual C++ - uuid 확장 속성과 __uuidof 확장 연산자파일 다운로드1
11924정성태5/30/201913594Math: 57. C# - 해석학적 방법을 이용한 최소 자승법 [1]파일 다운로드1
11923정성태5/30/201913221Math: 56. C# - 그래프 그리기로 알아보는 경사 하강법의 최소/최댓값 구하기파일 다운로드1
11922정성태5/29/201911327.NET Framework: 840. ML.NET 데이터 정규화파일 다운로드1
11921정성태5/28/201916218Math: 55. C# - 다항식을 위한 최소 자승법(Least Squares Method)파일 다운로드1
11920정성태5/28/20199906.NET Framework: 839. C# - PLplot 색상 제어
11919정성태5/27/201912979Math: 54. C# - 최소 자승법의 1차 함수에 대한 매개변수를 단순 for 문으로 구하는 방법 [1]파일 다운로드1
11918정성태5/25/201914141Math: 53. C# - 행렬식을 이용한 최소 자승법(LSM: Least Square Method)파일 다운로드1
11917정성태5/24/201914195Math: 52. MathNet을 이용한 간단한 통계 정보 처리 - 분산/표준편차파일 다운로드1
11916정성태5/24/201912221Math: 51. MathNET + OxyPlot을 이용한 간단한 통계 정보 처리 - Histogram파일 다운로드1
11915정성태5/24/201914534Linux: 11. 리눅스의 환경 변수 관련 함수 정리 - putenv, setenv, unsetenv
11914정성태5/24/201914238Linux: 10. 윈도우의 GetTickCount와 리눅스의 clock_gettime파일 다운로드1
11913정성태5/23/201911871.NET Framework: 838. C# - 숫자형 타입의 bit(2진) 문자열, 16진수 문자열 구하는 방법파일 다운로드1
11912정성태5/23/201911590VS.NET IDE: 137. Visual Studio 2019 버전 16.1부터 리눅스 C/C++ 프로젝트에 추가된 WSL 지원
11911정성태5/23/201910648VS.NET IDE: 136. Visual Studio 2019 - 리눅스 C/C++ 프로젝트에 인텔리센스가 동작하지 않는 경우
11910정성태5/23/201919239Math: 50. C# - MathNet.Numerics의 Matrix(행렬) 연산 [1]파일 다운로드1
11909정성태5/22/201913733.NET Framework: 837. C# - PLplot 사용 예제 [1]파일 다운로드1
11908정성태5/22/201912061.NET Framework: 836. C# - Python range 함수 구현파일 다운로드1
11907정성태5/22/20199866오류 유형: 541. msbuild - MSB4024 The imported project file "...targets" could not be loaded
11906정성태5/21/20199831.NET Framework: 835. .NET Core/C# - 리눅스 syslog에 로그 남기는 방법
11905정성태5/21/201910474.NET Framework: 834. C# - 폴더 경로 문자열에서 "..", "." 표기를 고려한 최종 문자열을 얻는 방법 - 두 번째 이야기
11904정성태5/21/201916559.NET Framework: 833. C# - Open Hardware Monitor를 이용한 CPU 온도 정보 [1]파일 다운로드1
11903정성태5/21/201911659오류 유형: 540. .NET Core - System.PlatformNotSupportedException: The named version of this synchronization primitive is not supported on this platform.
11902정성태5/21/201910801오류 유형: 539. mstest 실행 시 "The directory name is invalid." 오류 발생
... 61  62  63  64  65  66  67  [68]  69  70  71  72  73  74  75  ...