Adding a string in front of every variable in a table
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I was looking to make a script that added a string in front of every variable in my table.
For example, I want to add "Table_" in front of every variable in the table I've attached to this post.
0 Kommentare
Akzeptierte Antwort
Voss
am 20 Sep. 2022
% read the table
t = readtable('Ztable.xlsx','VariableNamingRule','preserve');
% modify the variable names
t.Properties.VariableNames = strcat('Table_',t.Properties.VariableNames);
% save the table
writetable(t,'Ztable_modified.xlsx')
2 Kommentare
Eric Sofen
am 21 Sep. 2022
t.Properties.VariableNames = "Table_" + t.Properties.VariableNames;
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!