如何向 NSString 添加字符?
我有一些看起来像这样的字符串 20110525 。
我怎样才能将“-”字符放入 NSString 变量中?让日期看起来像这样 2011-05-25 ? 我的第二个问题是如何对日期进行排序,使表格看起来像这样 20110525 然后 20110526?请帮忙。谢谢
i have strings who look like this 20110525 .
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不直接使用 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.
您可以尝试使用 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 andsprintf(output,"%d-%d-%d",year,month,day)
to format your date.