Azzera filtri
Azzera filtri

how can I extract these cell array from

1 visualizzazione (ultimi 30 giorni)
Manav Divekar
Manav Divekar il 7 Dic 2021
Modificato: Manav Divekar il 7 Dic 2021
how can i write a function for thi

Risposte (1)

Voss
Voss il 7 Dic 2021
function out = parse_url_options(url)
idx = find(url == '=');
s_idx = find(ismember(url,'?&'));
e_idx = find(ismember(url,'&#'));
ni = numel(idx);
out = cell(ni,2);
for i = 1:ni
out{i,1} = url(s_idx(find(s_idx < idx(i),1,'last'))+1:idx(i)-1);
out{i,2} = url(idx(i)+1:e_idx(find(e_idx > idx(i),1))-1);
end

Categorie

Scopri di più su Programming in Help Center e File Exchange

Tag

Prodotti


Release

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by