gpt4 book ai didi

cocoa - “修剪”一个 NSString

转载 作者:行者123 更新时间:2023-12-03 17:56:41 26 4
gpt4 key购买 nike

如何“修剪” NSString 以便仅用旧字符串的特定部分创建新字符串?

例如,我有字符串“Monday the 12th of September”,我如何仅选出“Monday”部分?

最佳答案

使用NSRange

示例:

NSRange range;
range.location = 0;
range.length = 6;
NSString *Secondstring = [Firststring substringWithRange:dayRange];

假设“Firststring”包含“Monday the 12th of September”,打印“Secondstring”将仅给出“Monday”

关于cocoa - “修剪”一个 NSString,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12235228/

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