如何检查 NSString 的日期

发布于 2024-11-19 19:37:34 字数 191 浏览 1 评论 0原文

如何检查 NSString 是否为日期? 例如:

NSString - Jul 14 at 14.55 PM return TRUE

NSString - Talala... return False

请帮忙..

How can I check NSString is date or not?
For example:

NSString - Jul 14 at 14.55 PM return TRUE

NSString - Talala... return False

Please help..

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

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

发布评论

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

评论(3

耀眼的星火 2024-11-26 19:37:34

假设您使用的是 iOS,您可以使用 NSDataDetector

Assuming you're on iOS you can check that using NSDataDetector

毁虫ゝ 2024-11-26 19:37:34

您可以使用 NSDateFormatter 并允许它使用启发式方法来确定给定的输入字符串是否是日期(只需为此调用 [formatter setLeninent:YES] ) 。
如果它可以从您的 NSString 中创建一个 NSDate 对象,那么恭喜,该字符串包含日期,否则很可能不包含。

You could use a NSDateFormatter and allow it to use an heuristic to determine if the given input string is a date or not (just call [formatter setLeninent:YES] for this).
If it can create a NSDate object out of your NSString, congratulations, the string contains a date, otherwise it most likely doesn't.

○闲身 2024-11-26 19:37:34

您可以尝试创建一个新的 NSDate 实例,并提供 NSString 并检查结果是否为 nil

NSDate

You can try creating a new NSDate instance giving the NSString and check wether the result is nil or not.

NSDate

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