Searching a webpage for 'href="'

3 visualizaciones (últimos 30 días)
Janis Uhrig
Janis Uhrig el 19 de Abr. de 2016
Editada: Jan el 21 de Abr. de 2016
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
Guillaume el 19 de Abr. de 2016
Can you provide a link to that example?
Janis Uhrig
Janis Uhrig el 21 de Abr. de 2016
https://www.math.washington.edu/~greenbau/Math_498/surfer.m // Here they are looking for the string 'http:' ,but the website I want to crawl does have the links like this: href="studierende/bachelor-studiengaenge/betriebswirtschaft/aktuelles/terminplaene/terminplan-ss/" class="link">Terminplan</a. So the algorithm can't find the link.

Iniciar sesión para comentar.

Respuestas (2)

Meade
Meade el 20 de Abr. de 2016
Try regexp . For example:
exp = '<href="\w+">'
matches = regexp(youStr,exp,'match')

Jan
Jan el 21 de Abr. de 2016
Editada: Jan el 21 de Abr. de 2016
index = strfind(Str, 'href=')

Categorías

Más información sobre Dates and Time en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by