regexp(a,exp) related question.

1 vue (au cours des 30 derniers jours)
azizullah khan
azizullah khan le 21 Juil 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 ....

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 21 Juil 2014
Modifié(e) : Azzi Abdelmalek le 21 Juil 2014
a='<img src="images/flags/.gif" border=0 alt="">Country'
b=regexp(a,'(?<=>).+','match')

Plus de réponses (1)

Robert Cumming
Robert Cumming le 21 Juil 2014
you could use strfind to find the end of the html string, then parse the end of the string to get the Country.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by