Searching a webpage for 'href="'
Mostrar comentarios más antiguos
Is there a way to search on a webpage for the string 'href="' like it is done with the string 'http:' in cleve molers surfer.m example?
2 comentarios
Guillaume
el 19 de Abr. de 2016
Can you provide a link to that example?
Janis Uhrig
el 21 de Abr. de 2016
Respuestas (2)
Meade
el 20 de Abr. de 2016
exp = '<href="\w+">'
matches = regexp(youStr,exp,'match')
index = strfind(Str, 'href=')
Categorías
Más información sobre Mathematics en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!