如何将 NSString* 转换为 ANTLR3_UINT8 或 ANTLR3_UINT16
有人可以告诉我将 NSString* 转换为 ANTLR3 字符串(在 C 中使用)的正确方法是什么?
编辑:这似乎有效
char buf[255];
if ( YES == [myNSString getCString:buf maxLength:255 encoding:NSStringEncodingConversionAllowLossy] )
{
pANTLR3_UINT8 theExpression = (pANTLR3_UINT8*)buf;
...
Could somebody tell me what is the proper way to convert a NSString* to an ANTLR3 string (used in C) ?
EDIT: this seems to work
char buf[255];
if ( YES == [myNSString getCString:buf maxLength:255 encoding:NSStringEncodingConversionAllowLossy] )
{
pANTLR3_UINT8 theExpression = (pANTLR3_UINT8*)buf;
...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您想要完整的字符串而不丢失,您可以使用以下代码:
当然,如果字符丢失不重要,您可以使用其他编码。
Assuming that you want the complete string without loss, you can use the following code:
Of course you can use another encoding if character loss is not important.