regexp(a,exp) related question.
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
azizullah khan
el 21 de Jul. de 2014
Editada: Azzi Abdelmalek
el 21 de Jul. de 2014
a=<img src="images/flags/.gif" border=0 alt="">Country
want to get only Country using regexp and if any other function kindly mention it.
Country word will different for the next one.Use general statement .
thanks ....
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 21 de Jul. de 2014
Editada: Azzi Abdelmalek
el 21 de Jul. de 2014
a='<img src="images/flags/.gif" border=0 alt="">Country'
b=regexp(a,'(?<=>).+','match')
0 comentarios
Más respuestas (1)
Robert Cumming
el 21 de Jul. de 2014
you could use strfind to find the end of the html string, then parse the end of the string to get the Country.
0 comentarios
Ver también
Categorías
Más información sobre String Parsing 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!