how can I use the clipboard function to directely save this string array on workspace WITHOUT OPENING THE IMPORT WIZARD

3 visualizaciones (últimos 30 días)
  6 comentarios
per isakson
per isakson el 17 de Abr. de 2019
Doc says:
data = clipboard('pastespecial') imports the clipboard contents into an array using uiimport
AMINE EL MOUATAMID
AMINE EL MOUATAMID el 17 de Abr. de 2019
I solve the problem
actually uiimport creat a temprary text file and paste on it the data from clipboard in one line.
then the code that generated by import tool changes the data from that line( of text file) to a specific dataArray.
I add this function to the code ( txt=clipboard('paste');) txt is a 1*1 ( like the line of temrary text file)
delimiter = '\t';
%% Format for each line of text:
% column1: text (%s)
% column2: text (%s)
% column3: text (%s)
% column4: text (%s)
% column5: text (%s)
% column6: text (%s)
% For more information, see the TEXTSCAN documentation.
formatSpec = '%s%s%s%s%s%s%[^\n\r]';
%% Read columns of data according to the format.
txt = clipboard('paste');
dataArray = textscan(txt, formatSpec, 'Delimiter', delimiter, 'TextType', 'string', 'ReturnOnError', false);
%% Create output variable
DATA = [dataArray{1:end-1}];
%% Clear temporary variables
clearvars delimiter formatSpec dataArray txt ;
thank you all for your help

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Environment and Settings en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by