在 Innoscript 中将十六进制编码的 utf8 转换为字符串
我有一些以十六进制形式表示的 Unicode 字符串,并写入 ini 文件中,如下所示: 要转换的文本=#$a5e#$a5a#$a5b
我想在 innosetup 的 Unicode 版本中将其转换为宽字符串。
我找不到办法这样做。
I have some Unicode strings represented in Hexadecimal form and written in an ini file like the following:
Text to Convert=#$a5e#$a5a#$a5b
I would like to convert it to a wide-string in the Unicode version of innosetup.
I couldn't Find a way to do so.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Inno Setup 允许您从第三方 DLL 调用函数,因此您可以使用您最喜欢的语言制作一个简单的 DLL 来实现此函数,并从 Inno Setup 中调用它。
Inno Setup allows you to call functions from third party DLLs so you can make a simple DLL that implements this function using your favorite language, and call it from Inno Setup.