MATLAB: How to display data without single quotes in matlab command window

data

This is the code:
filename = 'Fixed.txt';
filepath = 'C:\Users\admin\Desktop\numberPlateExtraction';
file= fullfile(filepath, filename);
fid = fopen(file, 'rt');
fread(fid, 15, '*uchar');
data_cell = textscan(fid, '%s', 'CommentStyle' , {'File', '\t'},'CollectOutput',1);
fclose(fid);
data = data_cell{1};
Original output:
data =
'+91245XXXXXXX'
Required output:
data =
+91245XXXXXXX
[EDITED, Jan, Code formatted]

Best Answer

Three guesses:
fprintf('%s', data)
disp(data)
disp(strrep(data, char(39), '')) % CHAR(39) is the quote '