我正在尝试创建由多个部分组成的字符串。它以普通字符串开头,并在某些时候调用一个函数,该函数用十六进制数字填充指针。如下图所示。
PVOID hexval = NULL;
PCTSTR mystring = TEXT("BLA");
function(&hexval);
mystring += hexval; // just an idea of what I want, not actual code
如上所示,我希望mystring
附加hexvalue
。假设我的hexvalue
是0x424C41
。我想以mystring
为“ BLABLA”结束。
最好的方法是什么?
答案 0 :(得分:1)
(假设我对您的理解正确,并且预处理程序未定义UNICODE)
您应该执行以下操作:
这里有两个棘手的问题:
hexval
复制。如何!我建议您不要执行任何上述操作。最好避免陷入需要执行这些蛮力转换的情况。我敢打赌,您可能可以解决您正面临的任何问题。
答案 1 :(得分:0)
#include <stddef.h>
#include <stdlib.h>
#include <windows.h>
#include <tchar.h>
int main(void)
{
ULONG_PTR value = 0x424C41;
LPVOID hexval = &value;
PCTSTR mystring = _T("BLA");
size_t length = _tcslen(mystring);
size_t new_size = length + sizeof(ULONG_PTR) + 1;
LPTSTR new_string = calloc(new_size, sizeof(*new_string));
_tcscpy(new_string, mystring);
size_t offset;
for (offset = sizeof(ULONG_PTR); offset && !((char*)hexval)[offset - 1]; --offset);
for (size_t i = length ? length : 0, k = offset; k; ++i, --k)
new_string[i] = ((char*)hexval)[k - 1];
_tprintf(_T("\"%s\"\n"), new_string);
free(new_string);
}
不过,在2019年保持对ANSI的支持是受虐狂。