我有严格的时间限制,我真的需要一个正则表达式来解析这种类型的锚(它们都是这种格式)
<a href="20120620_0512_c2_1024.jpg">20120620_0512_c2_102..></a>
对于网址
20120620_0512_c2_1024.jpg
我知道它不是一个完整的 URL,它是相对的,请帮助
到目前为止,这是我的代码
year = datestr(now,'yyyy');
timestamp = datestr(now,'yyyymmdd');
html = urlread(['http://sohowww.nascom.nasa.gov//data/REPROCESSING/Completed/' year '/c2/' timestamp '/']);
links = regexprep(html, '<a href=.*?>', '');