How do Iget a list from multiple rows?

조회 수: 1 (최근 30일)
Bernard Opoku
Bernard Opoku 2017년 8월 8일
댓글: Bernard Opoku 2017년 8월 9일
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
Jan
Jan 2017년 8월 8일
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.

댓글을 달려면 로그인하십시오.

채택된 답변

Jan
Jan 2017년 8월 8일
편집: Jan 2017년 8월 8일
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
Bernard Opoku
Bernard Opoku 2017년 8월 9일
Thanks a lot Jan, that worked perfect!

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Stephen23
Stephen23 2017년 8월 8일
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
Bernard Opoku
Bernard Opoku 2017년 8월 9일
many thanks Stephen, this is very easy to understand

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by