在不知道索引的情况下提取子字符串

发布于 2024-12-17 03:04:47 字数 158 浏览 2 评论 0原文

我有一个类似这样的字符串 hello

现在我想从上面的字符串中提取日期(格式,分隔符可能不同)并将其存储在另一个字符串中。

我怎么能这么做呢?

谢谢

I have a string which is something like this
<term id="123" date="2011-19-08">hello</term>

now i want to extract the date(format,separator may be different) from the above string and store it in another string.

How could i do that?

Thanks

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

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

发布评论

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

评论(1

悲歌长辞 2024-12-24 03:04:47

使用正则表达式 (regex) 来执行此操作:

如果日期格式为 0000-00-00,则可以使用 ([0-9]{4}-[0-9]{ 2}-[0-9]{2})

如果您只是想提取 date 属性中的内容,您可以尝试:date="(.+ ?)”

Use regular expressions (regex) to do it:

If the date format is 0000-00-00, you could use ([0-9]{4}-[0-9]{2}-[0-9]{2})

If you're just trying to extract whatever's in the date attribute, you could try: date="(.+?)"

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