can xlsread read everything as strings ? if not, are there any other options ?

10 visualizzazioni (ultimi 30 giorni)
it seems xlsread will distinguish between numbers and strings, thus unable to read EVERYTHING as strings. am i correct? If so, i can only think of using actxserver and reading the content cell-by-cell. However, it requires that the cell displays the full content, that is, it cannot display something like '#####' which is what you'll see in excel if the number is too long. is there any easier option ? thanks so much
  1 Commento
Guillaume
Guillaume il 25 Nov 2014
Modificato: Guillaume il 25 Nov 2014
Your premise is wrong. What is displayed in the cell by excel in no way prevents you from reading the full content of the cell. The two are completely independent.
What is displayed is the Text property of the Range object, the value of the cell is the value property of the Range object.

Accedi per commentare.

Risposte (2)

Hikaru
Hikaru il 25 Nov 2014
Have you tried using the command:
[~,~,RAW]=xlsread('filename')
The variable raw will contain everything, if I'm not mistaken.
  2 Commenti
Elina
Elina il 25 Nov 2014
thanks. sorry, it is not EVERYTHING as STRINGS: Still NUMBERS saved as NUMBERS and STRINGS saved as STRINGS. e.g. suppose an excel cell reads as a number 999,999 if i use xlsread, it will be saved as a number 999999 in a matlab cell. However, what i want in the cell is '999,999' which is a string in the cell.
John
John il 27 Apr 2015
I'm having the same problem. I have a string "2E10" which is being read in as 2.00E10.

Accedi per commentare.


Guillaume
Guillaume il 25 Nov 2014
Note that it is excel returning numbers as numbers and text as text (xlsread uses actxserver behind the scene), so if you want numbers as strings, you'll have to do the conversion yourself:
[~, ~, raw] = xlsread('somefile');
for idx = 1:numel(raw)
if isnumeric(raw{idx})
raw{idx} = num2str(raw{idx});
end
end

Community Treasure Hunt

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

Start Hunting!

Translated by