Apostrophes in Cell
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How do I save a string to a cell that is in apostrophes?
ie. 'filename', not filename
0 Commenti
Risposte (2)
Jan
il 6 Apr 2011
If '''filename''' looks too confusing, e.g. when posting code in a forum:
quote = char(39);
abc = {[quote, 'filename', quote]}
0 Commenti
Matt Fig
il 6 Apr 2011
Use a double apostrophe everywhere you want one.
1 Commento
Walter Roberson
il 6 Apr 2011
Right. So in order to use that string itself, you would use
abc = '''filename''';
Vedere anche
Categorie
Scopri di più su File Operations in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!