フィルターのクリア

How to remove the empty spaces from imported text file?

1 回表示 (過去 30 日間)
Smithy
Smithy 2022 年 7 月 27 日
コメント済み: Smithy 2022 年 7 月 27 日
Hey everybody,
I have a space delimited textfile and would like to know how to make 1*5 cell with tline.
With below code, it shows the 1*40 cell. Is there a way to make the 1*5 cell?
clear; close all; clc;
tline = 'no 1 -5 21 -5'; % imported text example
tt = split(tline,[" ",","])';

採用された回答

Walter Roberson
Walter Roberson 2022 年 7 月 27 日
tline = 'no 1 -5 21 -5'; % imported text example
tt = regexp(tline, '\s+', 'split')
tt = 1×5 cell array
{'no'} {'1'} {'-5'} {'21'} {'-5'}
  1 件のコメント
Smithy
Smithy 2022 年 7 月 27 日
Thank you very much. It works well.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Import and Export についてさらに検索

タグ

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by