在不知道索引的情况下提取子字符串
我有一个类似这样的字符串
现在我想从上面的字符串中提取日期(格式,分隔符可能不同)并将其存储在另一个字符串中。
我怎么能这么做呢?
谢谢
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用正则表达式 (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="(.+?)"