How do Iget a list from multiple rows?

2 vues (au cours des 30 derniers jours)
Bernard Opoku
Bernard Opoku le 8 Août 2017
Commenté : Bernard Opoku le 9 Août 2017
Hi guys, I have a multiple rows of strings and I want get words that contains "#" all in a single column.
Example:
data = {'he is #coming #today'; 'will #it rain?'};
The desired output:
out = {'#coming';
'#today';
'#it'}
Thanks
  1 commentaire
Jan
Jan le 8 Août 2017
You forgot the quotes or double quotes. It matters if "strings" means cell strings or the modern string class. Please edit the question and post valid Matlab syntax.

Connectez-vous pour commenter.

Réponse acceptée

Jan
Jan le 8 Août 2017
Modifié(e) : Jan le 8 Août 2017
Perhaps these are cell strings:
data = {'he is #coming #today'; 'will #it rain?'};
words = strsplit(sprintf('%s ', data{:}), ' ').';
hasHash = ~cellfun('isempty', strfind(words, '#'));
result = words(hasHash);
There are many other ways. Does the # appear anywhere in the word? The example looks like it is the first character in all cases. Then:
data = {'he is #coming #today'; 'will #it rain?'};
words = strsplit(sprintf('%s ', data{:}), ' ').';
result = words(strncmp(words, '#', 1));
Or:
results = setdiff(words, strrep(words, '#', '*')).'
  1 commentaire
Bernard Opoku
Bernard Opoku le 9 Août 2017
Thanks a lot Jan, that worked perfect!

Connectez-vous pour commenter.

Plus de réponses (1)

Stephen23
Stephen23 le 8 Août 2017
Using a regular expression is trivially easy:
>> data = {'he is #coming #today'; 'will #it rain?'};
>> C = regexpi(data,'#[a-z]+','match');
>> [C{:}]
ans =
'#coming' '#today' '#it'
  1 commentaire
Bernard Opoku
Bernard Opoku le 9 Août 2017
many thanks Stephen, this is very easy to understand

Connectez-vous pour commenter.

Catégories

En savoir plus sur Characters and Strings dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by