纯C++的GUID和STR互相转换

本文介绍了两种在C++中进行GUID与字符串互相转换的方法,包括容错处理和防止非法字符导致的错误,确保转换过程的稳定性和安全性。
摘要由CSDN通过智能技术生成

CONVERT_STR_2_GUID 方法一:

#define CONVERT_STR_2_GUID(cstr, stGuid) do\
{\
    swscanf_s((const wchar_t*)cstr, L"{%8x-%4x-%4x-%2x%2x-%2x%2x%2x%2x%2x%2x}",\
    &(stGuid.Data1),&(stGuid.Data2),&(stGuid.Data3),\
    &(stGuid.Data4[0]),&(stGuid.Data4[1]),&(stGuid.Data4[2]),&(stGuid.Data4[3]),\
    &(stGuid.Data4[4]),&(stGuid.Data4[5]),&(stGuid.Data4[6]),&(stGuid.Data4[7]));\
}while(0);

方法二(新):1.在{}带空格容错处理上,2.在非法字符退出,有更好表现,不引起内容读取非法和字符非法上的出错


inline int CONVERT_STR_2_GUID(const unsigned char*cstr, GUID *pGuid)
{
	if (pGuid == NULL || cstr == NULL)return -1;
	unsigned char *pTemp = (unsigned char *)strchr( (char *)cstr,'{');
	if (pTemp == NULL )return -1;
	unsigned char *pEnd = (unsigned char *)strchr((char *)pTemp, '}');
	if (pTemp == NULL || pEnd == NULL|| pEnd-pTemp<=35)
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值