Notice
Recent Posts
Recent Comments
Link
투케이2K
213. (swift5/xcode) [유틸 파일] formatDecodeNumberString : 특정 진법 값을 10 진수 값으로 변환 수행 본문
Swift
213. (swift5/xcode) [유틸 파일] formatDecodeNumberString : 특정 진법 값을 10 진수 값으로 변환 수행
투케이2K 2024. 5. 6. 10:34[개발 환경 설정]
개발 툴 : XCODE
개발 언어 : SWIFT5
[소스 코드]
// -----------------------------------------------------------------------------------------
// MARK: - [특정 진법 값을 10 진수 값으로 변환 수행]
// -----------------------------------------------------------------------------------------
func formatDecodeNumberString(type: Int, data: String) -> String {
/*
// -----------------------------------------
[formatDecodeNumberString 메소드 설명]
// -----------------------------------------
1. 특정 진법 값을 10 진수 값으로 변환 수행
// -----------------------------------------
2. 호출 방법 : C_Encryption().formatDecodeNumberString(type: 2, data: "1010")
// -----------------------------------------
3. 리턴 반환 : 10
// -----------------------------------------
*/
// [초기 리턴 데이터 변수 선언 실시]
var returnData = ""
// [인풋 데이터 조건 체크 수행 실시]
if type == 2 || type == 8 || type == 16 {
if let number = Int(data, radix: type) {
returnData = String(describing: number)
}
}
// [로그 출력 실시]
S_Log._D_(description: "특정 진법 값을 10 진수 값으로 변환 수행", data: [
"INPUT [TYPE] :: \(type)",
"INPUT [DATA] :: \(data)",
"RETURN :: \(returnData)"
])
// [리턴 데이터 반환 실시]
return returnData
}
[결과 출력]
반응형
'Swift' 카테고리의 다른 글
Comments