Remove some portion from a sentance...
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
azizullah khan
le 22 Juil 2014
Commenté : Joseph Cheng
le 22 Juil 2014
i want to remove ', and obtain the remaining expression...
write general code.... i want to obtain http://www1.interactivebrokers.ch/contract_info/index2.php?action=Details&site=GEN&conid=81578645
2 commentaires
Réponse acceptée
Geoff Hayes
le 22 Juil 2014
Since the single quote appears at the end of the string, then just remove that last character
urlStr = 'http://www1.interactivebrokers.ch/contract_info/index2.php?action=Details&site=GEN&conid=81578645''';
urlStr = urlStr(1:end-1);
1 commentaire
Joseph Cheng
le 22 Juil 2014
if there are additional erroneous ' in there you could do,
urlStr(strfind(urlStr,''''))=[];
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Structures dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!