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

3 visualizzazioni (ultimi 30 giorni)
  6 Commenti
per isakson
per isakson il 17 Apr 2019
Doc says:
data = clipboard('pastespecial') imports the clipboard contents into an array using uiimport
AMINE EL MOUATAMID
AMINE EL MOUATAMID il 17 Apr 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

Accedi per commentare.

Risposte (0)

Categorie

Scopri di più su Environment and Settings in Help Center e File Exchange

Tag

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by