我在中为我的Windows8应用注册了一个德语名字和一个英文名字。
然后我在我的解决方案中创建了两个文件:
Strings/de/Resources.resw with name "AppName" and value "German Title"
Strings/en/Resources.resw with name "AppName" and value "English Title"
然后我点击了编辑应用程序清单。在显示名称资源字段中,我输入了“ms-:/AppName”,但是当我想构建我的应用程序时,我得到一个错误消息,说
我有一个基于地址簿的应用程序,在这个应用程序中,我获取联系人的名称并将它们显示在一个表中,就像ABPeopleViewController一样,使用
NSString *name = (NSString *)ABRecordCopyCompositeName([contacts objectAtIndex:indexPath.section]);
aCell.textLabel.text = name;
[name release];
当我处理英文名字时,这样做很好;它们是这样出来的,正如我想要的那样:
John Smith (good)
Jane Doe (good)
Taro Ta
我们正在将数据从一个Sql-server数据库迁移到另一个数据库。有一个类型为nvarchar的列可能包含阿拉伯字符。我需要把英文名字和阿拉伯名字分开,把每个名字都放在自己的专栏里。类似于:
insert NewTable(EnglishDescription)
select Description from OldTable where Description does not contain 'Arabic characters'
insert NewTable(ArabicDescription)
select Description from OldTable whe