[英]Transform unicode character to its string representation
在VBA 6中,有任何功能(请以最快的速度)可以执行以下操作:
correspondentString = function(\uXYZP)
并给你那个Unicode字符的字符串表示形式?
您是否正在寻找这样的东西:
Dim LResult As String
LResult = StrConv(text, vbFromUnicode)
请参阅此处以了解更多信息: http : //www.techonthenet.com/excel/formulas/strconv.php
声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.