Apostrophes in Cell
조회 수: 4 (최근 30일)
이전 댓글 표시
How do I save a string to a cell that is in apostrophes?
ie. 'filename', not filename
댓글 수: 0
답변 (2개)
Jan
2011년 4월 6일
If '''filename''' looks too confusing, e.g. when posting code in a forum:
quote = char(39);
abc = {[quote, 'filename', quote]}
댓글 수: 0
Matt Fig
2011년 4월 6일
Use a double apostrophe everywhere you want one.
댓글 수: 1
Walter Roberson
2011년 4월 6일
Right. So in order to use that string itself, you would use
abc = '''filename''';
참고 항목
카테고리
Help Center 및 File Exchange에서 File Operations에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!