如何向 NSString 添加字符?

发布于 2024-11-09 09:24:33 字数 207 浏览 0 评论 0原文

我有一些看起来像这样的字符串 20110525 。 tableview

我怎样才能将“-”字符放入 NSString 变量中?让日期看起来像这样 2011-05-25 ? 我的第二个问题是如何对日期进行排序,使表格看起来像这样 20110525 然后 20110526?请帮忙。谢谢

i have strings who look like this 20110525 .
tableview

how can i make to put '-' caracters in NSString variable ? to let dates look like this 2011-05-25 ?
My second question is how can i sort the dates to make the table look like this 20110525 then 20110526 ?Help please . Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

霞映澄塘 2024-11-16 09:24:33

为什么不直接使用 NSDate 类来获取日期,并使用 NSDateFormatter 按照您想要的方式格式化日期。

Why not just use the NSDate class to get the date, and use an NSDateFormatter to format the date the way you want.

请别遗忘我 2024-11-16 09:24:33

您可以尝试使用 sscanf(input,"%4d%2d%2s",&year,&month,&day) 解析输入字符串和 sprintf(output,"% d-%d-%d",年,月,日) 来格式化您的日期。

you can try using sscanf(input,"%4d%2d%2s",&year,&month,&day) to parse input string and sprintf(output,"%d-%d-%d",year,month,day) to format your date.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文