フィルターのクリア

How to find a replace _ in a header of a large table

2 ビュー (過去 30 日間)
Emanuele Mele
Emanuele Mele 2019 年 3 月 8 日
回答済み: Walter Roberson 2019 年 3 月 9 日
Hi all
I would like to know if and how you can automatically replace with a funciton the character _ in the header of a table 400 x 115 where this is present in random order.
Thank you!

採用された回答

Walter Roberson
Walter Roberson 2019 年 3 月 9 日
YourTable.Properties.VariableNames = regexprep(YourTable.Properties.VariableNames, '_', 'XXX');
Change the 'XXX' to the thing you want the '_' replaced with. The replacement characters must be chosen from '' (empty) or 'A':'Z' or 'a':'z' or '0':'9' or '_' -- in other words the VariableNames are restricted to being valid MATLAB variable names.

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by