How to add strings and add spaces

조회 수: 2 (최근 30일)
Jose Grimaldo
Jose Grimaldo 2020년 2월 4일
편집: stozaki 2020년 2월 4일
Screenshot (202).png
Im having trouble adding strings together and adding space in between so V=" I Dislike Eggs". I'm using R2019b program.

답변 (1개)

stozaki
stozaki 2020년 2월 4일
편집: stozaki 2020년 2월 4일
There are various ways. The following is an example.
L = "I";
M = "Dislike";
N = "Eggs";
V = sprintf("%s %s %s",L,M,N)
Please see following URL as details.
Or
L = 'I';
M = 'Dislike';
N = 'Eggs';
V = [L,' ',M,' ',N]

카테고리

Help CenterFile Exchange에서 Numeric Types에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by