1x1のセルを文字列​に変換するにはどうし​たらよいですか?

7 views (last 30 days)
MathWorks Support Team
MathWorks Support Team on 13 Nov 2024 at 0:00
Answered: MathWorks Support Team on 13 Nov 2024 at 3:58

{'line'}のような1x1のセルを、'line'のような文字ベクトルや、"line"のような文字列に変換する方法を教えてください。

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 13 Nov 2024 at 0:00
文字ベクトルを含むセル配列を文字配列に変換するには、char関数を使用します。
A = {'line'}; B = char(A);
セルの内容を抽出するには、中括弧を使ってインデックスを指定します。
A = {'line'}; B = A{1};
R2016b以降では、文字列配列にテキストを保存することができます。セル配列を文字列配列に変換するには、string関数を使用します。
A = {'line'}; B = string(A);
詳細については、MathWorksのドキュメント「Cell Arrays of Character Vectors」および「Text in String and Character Arrays」をご参照ください。 

More Answers (0)

Categories

Find more on ビッグ データの処理 in Help Center and File Exchange

Tags

No tags entered yet.

Community Treasure Hunt

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

Start Hunting!