フィルターのクリア

strjoin, string, remove a single space, while combining variables.

11 ビュー (過去 30 日間)
Tyler Young
Tyler Young 2020 年 2 月 22 日
コメント済み: Walter Roberson 2020 年 2 月 23 日
I have to do this in this manner for a hw question, I know there are other ways to acomplish the same thing....
X = strjoin([ "The" , "cat" ], " ")
Y = strjoin([ "over" , "the" , "fence" ], " ")
Z = strjoin([ X ,"jumped", Y ,"." ], " ")
"Z" has a space between the end of string "Y" and the added period, I need to remove just that space while maintaining the rest of the spaces between the other strings.
How do I get.....
"The cat jumped over the fence." % no space between "fence" and "."

採用された回答

Walter Roberson
Walter Roberson 2020 年 2 月 22 日
Join one fewer item in Y, and strcat() or + it on to the end.
If you absolutely must use only strjoin, then join one fewer item into Y, and strjoin the result with "" (empty string) using "." as the joining character.
  2 件のコメント
Tyler Young
Tyler Young 2020 年 2 月 23 日
Thank you for response, I must use strjoin, but I'm not sure what you mean by "" (empty string) using "." as joining character
Walter Roberson
Walter Roberson 2020 年 2 月 23 日
strjoin([A, ""], ".")

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by