Split column by text and numbers

8 ビュー (過去 30 日間)
Dion Theunissen
Dion Theunissen 2022 年 8 月 10 日
回答済み: Stephen23 2022 年 8 月 10 日
I have a column with housenumbers. Like:
str = ["54","33", "104A",...]
I want to split it in two columns
Numbers = ["54","33", "104",...]
Letters = ["","", "A",...]
  1 件のコメント
Walter Roberson
Walter Roberson 2022 年 8 月 10 日
https://www.mathworks.com/help/matlab/ref/extract.html

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

採用された回答

Stephen23
Stephen23 2022 年 8 月 10 日
str = ["54","33","104A"];
tkn = regexp(str,'^(\d+)\s*(\w*)$','tokens','once');
tkn = vertcat(tkn{:});
num = tkn(:,1)
num = 3×1 string array
"54" "33" "104"
let = tkn(:,2)
let = 3×1 string array
"" "" "A"

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Object Programming についてさらに検索

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by