gpt4 book ai didi

objective-c - Objective-C : How to get the Ascii Integer value of the first letter of a NSString?

转载 作者:搜寻专家 更新时间:2023-10-30 19:54:30 25 4
gpt4 key购买 nike

Objective-C :如何获取 NSString 首字母的 Ascii 整数值?

最佳答案

if ([aString length] > 0) {
unichar firstCharacter = [aString characterAtIndex: 0];
// ...
}

就是这样。 unicharunsigned short 的别名,也是一种整数类型。但是,不能保证字符是 ASCII 的一部分,因为 NSString 是基于 Unicode 的。

关于objective-c - Objective-C : How to get the Ascii Integer value of the first letter of a NSString?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4422385/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com