regexp(a,exp) related question.
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
azizullah khan
il 21 Lug 2014
Modificato: Azzi Abdelmalek
il 21 Lug 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 Commenti
Risposta accettata
Azzi Abdelmalek
il 21 Lug 2014
Modificato: Azzi Abdelmalek
il 21 Lug 2014
a='<img src="images/flags/.gif" border=0 alt="">Country'
b=regexp(a,'(?<=>).+','match')
0 Commenti
Più risposte (1)
Robert Cumming
il 21 Lug 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 Commenti
Vedere anche
Categorie
Scopri di più su String Parsing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!