Extract Last two Words from strings in cell
2 次查看(过去 30 天)
显示 更早的评论
A={'There is a world of good you could perform';
'All the money in the world couldnot have saved her';
'W';
'My world'}
0 个评论
采纳的回答
dpb
2020-3-2
编辑:dpb
2020-3-3
> 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 个评论
dpb
2020-3-3
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.
- 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.
- 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! :)
更多回答(1 个)
Stephen23
2020-3-3
编辑:Stephen23
2020-3-3
>> 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'
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!