Extract Last two Words from strings in cell

10 visualizzazioni (ultimi 30 giorni)
A={'There is a world of good you could perform';
'All the money in the world couldnot have saved her';
'W';
'My world'}

Risposta accettata

dpb
dpb il 2 Mar 2020
Modificato: dpb il 3 Mar 2020
> arrayfun(@(s) s{:}(end-((numel(s{:})-1)>=1):end),arrayfun(@(s) split(s).',S,'uni',0),'uni',0)
ans =
4×1 cell array
{1×2 string}
{1×2 string}
{["W" ]}
{1×2 string}
>>
"what if we want to extract last three words instead of two words."
Actually, there's a much easier way to compute the starting position than above...
nW=3;
arrayfun(@(s) s{:}(max(numel(s{:})-(nW-1),1):numel(s{:})),arrayfun(@(s) split(s).',S,'uni',0),'uni',0)
Set nW first; to pass as argument to arrayfun would have to make it an array since it won't accept anything except an array as an argument...unfortunately, no automagic argument expansion for such purposes.
As noted, the regexp solution is undoubtedly the more better route for stuff like this...altho there's a notable difference in the two results -- this returns a cell array of the words separated out; the regexp result has a single phrase containing the number of words.
An alternate way with string functions would be to find() the last blank in the string before the right number of words and extractAfter. That would also return the substring in one piece.
  2 Commenti
Muhammad Rahil Rafiq
Muhammad Rahil Rafiq il 3 Mar 2020
It worked.
1- what if we want to extract last three words instead of two words.
2-While exporting the ans to excel (xlswrite), its displaying empty cells in excel
dpb
dpb il 3 Mar 2020
It really was posted mostly tongue-in-cheek; this problem is probably most suited for regexp but I'm not fluent enough to be able to just write the proper expression otomh, sorry.
  1. Fix up the algebra to calculate start position from end -- it gets a litt bit messier but not impossible. Variable number to return would be simpler if flipped left-right and counted from beginning instead.
  2. xlswrite only writes rectangular regions in a single call or one has to convert so each element is in its on cell; that wasn't part of the initial requirement specifications, either! :)

Accedi per commentare.

Più risposte (1)

Stephen23
Stephen23 il 3 Mar 2020
Modificato: Stephen23 il 3 Mar 2020
>> A = {'There is a world of good you could perform'; 'All the money in the world couldnot have saved her'; 'W'; 'My world'}
A =
'There is a world of good you could perform'
'All the money in the world couldnot have saved her'
'W'
'My world'
>> C = regexp(A,'(\w+\s*){1,2}$','match','once')
C =
'could perform'
'saved her'
'W'
'My world'

Community Treasure Hunt

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

Start Hunting!

Translated by